Conditionals and Loops
Conditional Rendering
<template>
<Window title="Example" width="400" height="100" margined>
<Box padded>
<Text>Welcome to your Vuido application!</Text>
<Text v-if="seen">You can see this</Text>
</Box>
</Window>
</template>
<script>
export default {
data() {
return {
seen: true
};
}
}
</script>List Rendering
Last updated