摘要: 子组件 <template> <button @click="handle">自定义事件</button></template> <script> export default{ data(){ return{ message:"我子组件" } }, methods:{ handle(){ this 阅读全文
posted @ 2023-09-03 16:30 学无边涯 阅读(49) 评论(0) 推荐(1)
摘要: 1,子组件 <template> <h1>props传递参数</h1> <p>{{title}}</p> <ul> <li v-for="item in nelist">{{item}}</li> </ul> </template> <script> export default{ name:"my 阅读全文
posted @ 2023-09-03 16:15 学无边涯 阅读(21) 评论(0) 推荐(0)
摘要: Props数据类型都有哪些 Props:{ title:String, likes:Number, flag:Boolean, newslist:Array, auth:Object, callback:Function } 阅读全文
posted @ 2023-09-03 09:57 学无边涯 阅读(50) 评论(0) 推荐(0)