export default defineComponent({ name: 'HelloWorld', components: { ComponentA, ComponentB }, props: { msg: String, }, setup(props, ctx) { const count = ref(0) function add() { count.value++ } // 使用return {} 把變量、方法暴露給模板 return { count, add, } }, }) 在3.0.0-beta...
www.dbjr.com.cn/article/2694...htm 2022-12-8