dora-pda-ui
Version:
pda ui components for dorabot
20 lines (15 loc) • 496 B
JavaScript
import mixin from "./libs/mixin.js";
const $dora = {};
const install = (Vue, options) => {
// 同时挂载到uni和Vue.prototype中
// #ifndef APP-NVUE
// 只有vue,挂载到Vue.prototype才有意义,因为nvue中全局Vue.prototype和Vue.mixin是无效的
Vue.prototype.$dora = { ...$dora, ...options };
Vue.mixin(mixin);
// #endif
// $dora挂载到uni对象上
uni.$dora = { ...$dora, ...options };
};
export default {
install,
};