vue-sfc-compiler/template/src/my-component.vue

27 lines
317 B
Vue

<template>
<div @click="changeName()">
Hello, {{name}}.
</div>
</template>
<script>
export default {
name : 'my-component',
data() {
return {
name : 'world'
};
},
methods : {
changeName() {
this.name = 'foobar';
}
}
};
</script>
<style lang="less" scoped>
div {
font-weight: bold;
}
</style>