mirror of
https://github.com/tachiyomiorg/website.git
synced 2024-12-23 00:21:57 +01:00
24 lines
670 B
JavaScript
24 lines
670 B
JavaScript
import "./styles/fonts.styl";
|
|
import "./styles/animate.css";
|
|
import "./styles/sweetalert2.css";
|
|
import "vue-material-design-icons/styles.css";
|
|
|
|
import { VueAgile } from "vue-agile";
|
|
import VueSweetalert2 from "vue-sweetalert2";
|
|
import VueMoment from "vue-moment";
|
|
|
|
import store from "./store";
|
|
|
|
export default ({
|
|
Vue, // the version of Vue being used in the VuePress app
|
|
options, // the options for the root Vue instance
|
|
router, // the router instance for the app
|
|
siteData, // site metadata
|
|
}) => {
|
|
// eslint-disable-next-line vue/match-component-file-name
|
|
Vue.component("Agile", VueAgile);
|
|
Vue.use(VueSweetalert2);
|
|
Vue.use(VueMoment);
|
|
Vue.mixin({ store });
|
|
};
|