mirror of
https://github.com/hi2shark/nazhua.git
synced 2026-01-12 15:20:43 +08:00
17 lines
447 B
JavaScript
17 lines
447 B
JavaScript
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';
|
|
|
|
export default (app) => {
|
|
app.use(router);
|
|
app.use(store);
|
|
app.component('DotDotBox', DotDotBox);
|
|
|
|
app.config.globalProperties.$hasSarasaTerm = !import.meta.env.VITE_DISABLE_SARASA_TERM_SC;
|
|
app.config.globalProperties.$config = config;
|
|
};
|