main.js 904 B

12345678910111213141516171819202122232425262728293031323334
  1. import Vue from 'vue'
  2. import App from './App.vue'
  3. import router from './router'
  4. import store from './store'
  5. import cloneDeep from 'lodash/cloneDeep'
  6. import VueCookie from 'vue-cookie'
  7. import refreshTitle from './utils/refreshTitle'
  8. import './utils/filter'
  9. // 全站配置
  10. window.SITE_CONFIG = {}
  11. Vue.prototype.$refreshTitle = refreshTitle
  12. Vue.directive('myBlur', {
  13. inserted: function (element) {
  14. element.onblur = function () {
  15. const timer = setTimeout(function () {
  16. clearTimeout(timer)
  17. const scrollHeight = document.documentElement.scrollTop || document.body.scrollTop || 0
  18. window.scrollTo(0, Math.max(scrollHeight - 1, 0))
  19. }, 100)
  20. }
  21. }
  22. })
  23. Vue.use(VueCookie)
  24. new Vue({
  25. router,
  26. store,
  27. render: h => h(App),
  28. created () {
  29. // 保存整站vuex本地储存初始状态
  30. window.SITE_CONFIG.storeState = cloneDeep(store.state)
  31. }
  32. }).$mount('#app')