VUE在setup中使用data的数据
使用getCurrentInstance方法获取data内的数据import { getCurrentInstance } from "vue";export default {data() {return {b: "data数据",};},setup() {const datab = getCurrentInstance();async function getdata(){let dataa=
·
使用getCurrentInstance方法获取data内的数据
import { getCurrentInstance } from "vue";
export default {
data() {
return {
b: "data数据",
};
},
setup() {
const datab = getCurrentInstance();
async function getdata(){
let dataa=datab.data.b;
console.log(dataa)
}
},
};
更多推荐
已为社区贡献2条内容
所有评论(0)