import Vue from 'vue'; // global Styles import "@riophae/vue-treeselect/dist/vue-treeselect.css";//for tree select import "@Global/scss/style.scss"; // global Components import PartTitle from "@Global/components/Dividers/PartTitle.vue"; import PageTitle from "@Global/components/Dividers/PageTitle.vue"; import SectionTitle from "@Global/components/Dividers/SectionTitle.vue"; import Checkbox from "@Global/components/Inputs/Checkbox.vue"; import InfoBlock from "@Global/components/Misc/InfoBlock.vue"; import Breadcrumbs from "@Global/components/Misc/Breadcrumbs"; import Dialog from "@Global/components/Modals/Dialog.vue"; import Helper from "@Global/components/Modals/Helper.vue"; import InfoMultiple from "@Global/components/Misc/InfoBlock-Multiple.vue"; import Treeselect from "@riophae/vue-treeselect"; import NoItems from "@Global/components/Misc/NoItems.vue"; import Loading from "@Global/components/Misc/Loading-CSS-3.vue"; Vue.component("WM-PartTitle", PartTitle); Vue.component("WM-PageTitle", PageTitle); Vue.component("wm-section-title", SectionTitle); Vue.component("WM-Checkbox", Checkbox); Vue.component("wm-info-block", InfoBlock); Vue.component("wm-info-block-multiple", InfoMultiple); Vue.component("wm-breadcrumbs", Breadcrumbs); Vue.component("wm-dialog", Dialog); Vue.component("wm-helper", Helper); Vue.component("treeselect", Treeselect); Vue.component("we-no-items", NoItems); Vue.component("we-loading", Loading); //setTime import store from "@Global/store/index"; store.dispatch('common/setCurrentTime'); //jalali => 0.6MB import jalaliMoment from "vue-jalali-moment" import momment from "moment" momment.locale('fa'); Vue.use(jalaliMoment);