Created
March 15, 2019 22:16
-
-
Save jordanhudgens/fb438e267ab15224347142bba018ece0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Vue from "vue"; | |
import VeeValidate from "vee-validate"; | |
import VueSweetalert2 from "vue-sweetalert2"; | |
import VModal from "vue-js-modal"; | |
import router from "./router"; | |
import store from "./store/index.js"; | |
import wysiwyg from "vue-wysiwyg"; | |
import VueSVGIcon from "vue-svgicon"; | |
import PrettyCheckbox from "pretty-checkbox-vue"; | |
import App from "./App.vue"; | |
import "./filters"; | |
import "../node_modules/vue-wysiwyg/dist/vueWysiwyg.css"; | |
Vue.use(PrettyCheckbox); | |
Vue.use(wysiwyg, {}); | |
Vue.use(VueSVGIcon); | |
Vue.use(VeeValidate); | |
Vue.use(VueSweetalert2); | |
Vue.use(VModal); | |
Vue.config.productionTip = false; | |
store.dispatch("storeCheckLoginStatus"), | |
new Vue({ | |
router, | |
store, | |
render: h => h(App) | |
}).$mount("#app"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment