Interpolations
Text Interpolation
<template>
<Window title="Example" width="400" height="100" margined>
<Box>
<Text>Hello, {{ name }}</Text>
</Box>
</Window>
</template>
<script>
export default {
data() {
return {
name: 'John'
};
}
}
</script>Binding Attributes
Last updated