mirror of
https://github.com/tachiyomiorg/website.git
synced 2024-12-23 00:21:57 +01:00
8cdebba09d
* Clean foundation * Carry over stuff * Amend some things * Delete mdi-iconfont.scss * Remove forgotten code
25 lines
693 B
JavaScript
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 });
|
|
};
|