Displaying Dialogs
Message Boxes
<template>
<Window title="Example" width="400" height="100" margined>
<Button v-on:click="showMessage">Show Message</Button>
</Window>
</template>
<script>
export default {
methods: {
showMessage() {
this.$dialogs.msgBox( 'Title', 'This is the message.' );
}
}
}
</script>File Dialogs
Last updated