21 lines
554 B
JavaScript
21 lines
554 B
JavaScript
import SideBar from "@/components/SidebarPlugin";
|
|
import Notify from "@/components/NotificationPlugin";
|
|
import GlobalComponents from "./globalComponents";
|
|
import GlobalDirectives from "./globalDirectives";
|
|
import "es6-promise/auto";
|
|
|
|
//css assets
|
|
import "bootstrap/dist/css/bootstrap.css";
|
|
import "@/assets/sass/black-dashboard.scss";
|
|
import "@/assets/css/nucleo-icons.css";
|
|
import "@/assets/demo/demo.css";
|
|
|
|
export default {
|
|
install(Vue) {
|
|
Vue.use(GlobalComponents);
|
|
Vue.use(GlobalDirectives);
|
|
Vue.use(SideBar);
|
|
Vue.use(Notify);
|
|
}
|
|
}
|