在reactive
vue api 组合中,我应该使用 ref 还是不使用?是一样的吗?ref 做什么?
const state = reactive({
loading: ref(true)
});
或者
const state = reactive({
loading: true
});
在reactive
vue api 组合中,我应该使用 ref 还是不使用?是一样的吗?ref 做什么?
const state = reactive({
loading: ref(true)
});
或者
const state = reactive({
loading: true
});