Managing Windows
Starting the Application
const window = new Vue( {
render: h => h( MainWindow )
} );
window.$start();Exiting the Application
<template>
<Window title="Example" width="400" height="100" margined v-on:close="exit">
...
</Window>
</template>
<script>
export default {
methods: {
exit() {
this.$exit();
}
}
}
</script>Creating Additional Windows
Destroying a Window
Last updated