mirror of https://github.com/4xmen/xshop.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
543 B
JavaScript
25 lines
543 B
JavaScript
import 'bootstrap';
|
|
import { createApp } from 'vue';
|
|
import ToastPlugin from 'vue-toast-notification';
|
|
import {useToast} from 'vue-toast-notification';
|
|
import store from "../client-vuex/client-store.js";
|
|
import chartjs from 'chart.js/auto';
|
|
|
|
|
|
const app = createApp({});
|
|
const $toast = useToast({
|
|
duration: 10000,
|
|
});
|
|
|
|
|
|
import MetaFilter from '../client-vue/MetaFilter.vue';
|
|
app.component('meta-filter', MetaFilter);
|
|
|
|
app.use(ToastPlugin);
|
|
app.use(store);
|
|
app.mount('#app');
|
|
|
|
window.app = app;
|
|
window.$toast = $toast;
|
|
window.store = store;
|