Window Template
<template>
<Window title="Example" width="400" height="100" margined v-on:close="exit">
<Box>
<Text>Welcome to your Vuido application!</Text>
</Box>
</Window>
</template><template>
<Window title="Example" width="400" height="100" margined v-on:close="exit">
<Box padded>
<Text>Welcome to your Vuido application!</Text>
<Box horizontal padded>
<Button>OK</Button>
<Button>Cancel</Button>
</Box>
</Box>
</Window>
</template>Last updated