<!-- App.vue --><template><div><h1>我是APP组件</h1><h2>姓名:{{ name }}</h2><h2>年龄: {{ age }}</h2><h2>性别: {{sex}}</h2><button@click="sayHello">说话</button></div></template><script>exportdefault{name:"App",data(){return{sex:'男'}},setup(){// 数据let name ="zhangsan";let age =18;functionsayHello(){
console.log(`我叫${name},今年我${age}岁了`);}return{
name,
age,
sayHello,};},};</script>