如何在 Vue NuxtJS 中正確設(shè)置類原型?我創(chuàng)建插件nuxt.config.jsplugins: [ { src: "~/plugins/global.js" },],全局.jsimport Vue from "vue";import CustomStore from "devextreme/data/custom_store";//try set in prototypeVue.use(CustomStore)有錯(cuò)誤A class must be instantiated using the 'new'我知道這是不正確的,但我找不到任何地方如何初始化它Vue.use(new CustomStore());沒(méi)有錯(cuò)誤但是怎么調(diào)用呢?我想在我的組件中使用類似的東西this.dataSource = this.$CustomStore({ ///... settings...// })
在 NuxtJS Vue 中將類設(shè)置為原型
慕姐4208626
2023-08-10 16:03:03