如何在 Vue NuxtJS 中正确设置类原型?
我创建插件
nuxt.config.js
plugins: [
{ src: "~/plugins/global.js" },
],
全局.js
import Vue from "vue";
import CustomStore from "devextreme/data/custom_store";
//try set in prototype
Vue.use(CustomStore)
有错误
A class must be instantiated using the 'new'
我知道这是不正确的,但我找不到任何地方如何初始化它
Vue.use(new CustomStore());
没有错误但是怎么调用呢?
我想在我的组件中使用类似的东西
this.dataSource = this.$CustomStore({ ///... settings...// })
小唯快跑啊
相关分类