实例:
template: `
<button @click="count++">
You clicked me {{ count }} times.
</button>`
1. 说明:
count
是组件中的数据, template中可以直接使用组件中的数据- child::模板字符串 概念
1分钟阅读
template: `
<button @click="count++">
You clicked me {{ count }} times.
</button>`
count
是组件中的数据, template中可以直接使用组件中的数据