vue3 中自定义组件,如果使用了setup语法糖,那么属性props需要使用defineProps
代码如下:
const props = defineProps({
store: String
})
let store=props.store;
RoveCoder版权所有,转载请注明
vue3 中自定义组件,如果使用了setup语法糖,那么属性props需要使用defineProps
代码如下:
const props = defineProps({
store: String
})
let store=props.store;
RoveCoder版权所有,转载请注明