mirror of
https://github.com/hi2shark/nazhua.git
synced 2026-01-12 23:30:42 +08:00
21 lines
576 B
JavaScript
21 lines
576 B
JavaScript
import i18n from './i18n';
|
|
import './load';
|
|
import './assets/scss/base.scss';
|
|
import router from './router';
|
|
import store from './store';
|
|
import config from './config';
|
|
|
|
import DotDotBox from './components/dot-dot-box.vue';
|
|
import Popover from './components/popover.vue';
|
|
|
|
export default (app) => {
|
|
app.use(i18n);
|
|
app.use(router);
|
|
app.use(store);
|
|
app.component('DotDotBox', DotDotBox);
|
|
app.component('Popover', Popover);
|
|
|
|
app.config.globalProperties.$hasSarasaTerm = !import.meta.env.VITE_DISABLE_SARASA_TERM_SC;
|
|
app.config.globalProperties.$config = config;
|
|
};
|