You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
336 B
18 lines
336 B
4 years ago
|
import app from '@/config/app.js';
|
||
|
import zIndex from '@/config/zIndex.js';
|
||
|
import plugin from '@/config/plugin.js';
|
||
|
|
||
|
const $t = {
|
||
|
zIndex, // 定位元素层级
|
||
|
app, // app级别的相关配置
|
||
|
plugin, // 插件相关配置信息
|
||
|
};
|
||
|
|
||
|
uni.$t = $t;
|
||
|
|
||
|
const install = Vue => {
|
||
|
Vue.prototype.$t = $t;
|
||
|
};
|
||
|
|
||
|
export default { install };
|