tachiyomi-website/src/.vuepress/enhanceApp.js
Soitora 8cdebba09d
Quick "rewrite" (#332)
* Clean foundation

* Carry over stuff

* Amend some things

* Delete mdi-iconfont.scss

* Remove forgotten code
2020-08-31 20:36:42 +02:00

25 lines
693 B
JavaScript

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 Element from "element-ui";
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.use(Element);
Vue.mixin({ store });
};