Computed Properties
<template>
<Window title="Example" width="400" height="100" margined>
<Box>
<Text>Hello, {{ fullName }}</Text>
</Box>
</Window>
</template>
<script>
export default {
data() {
return {
firstName: 'John',
lastName: 'Smith'
};
},
computed: {
fullName() {
return this.firstName + ' ' + this.lastName;
}
}
}
</script>Last updated