Vue3手册译稿 - 基础 - 组件基础
摘要:
基础示例 一个Vue组件示例: // 创建一个Vue应用 const app = Vue.createApp({}) // 定义一个叫`button-counter`的全局组件 app.component('button-counter', { data() { return { count: 0 阅读全文
posted @ 2021-03-10 11:32 zhouyu 阅读(123) 评论(0) 推荐(0) 编辑