摘要: import {ref,createApp } from 'vue' const app = createApp({ /* 根组件选项 */ data() { return { count: 0 }; }, computed: { doubleCount() { return this.count 阅读全文
posted @ 2025-04-03 00:14 心意12 阅读(74) 评论(0) 推荐(0)