mirror of
https://github.com/creativetimofficial/vue-material-kit.git
synced 2025-05-23 21:04:21 +08:00
41 lines
998 B
JavaScript
41 lines
998 B
JavaScript
// =========================================================
|
|
// * Vue Material Kit - v1.2.0
|
|
// =========================================================
|
|
//
|
|
// * Product Page: https://www.creative-tim.com/product/vue-material-kit
|
|
// * Copyright 2019 Creative Tim (https://www.creative-tim.com)
|
|
// * Licensed under MIT (https://github.com/creativetimofficial/vue-material-kit/blob/master/LICENSE.md)
|
|
//
|
|
// * Coded by Creative Tim
|
|
//
|
|
// =========================================================
|
|
//
|
|
// * The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
|
|
import Vue from "vue";
|
|
import App from "./App.vue";
|
|
import router from "./router";
|
|
|
|
import MaterialKit from "./plugins/material-kit";
|
|
|
|
Vue.config.productionTip = false;
|
|
|
|
Vue.use(MaterialKit);
|
|
|
|
const NavbarStore = {
|
|
showNavbar: false
|
|
};
|
|
|
|
Vue.mixin({
|
|
data() {
|
|
return {
|
|
NavbarStore
|
|
};
|
|
}
|
|
});
|
|
|
|
new Vue({
|
|
router,
|
|
render: h => h(App)
|
|
}).$mount("#app");
|