keksAccountGUI/src/main.js

25 lines
447 B
JavaScript
Raw Normal View History

2019-05-21 15:41:19 +00:00
import Vue from 'vue'
2019-05-22 12:51:57 +00:00
import './plugins/vuetify'
2019-05-21 15:41:19 +00:00
import App from './App.vue'
2019-05-22 12:51:57 +00:00
import store from './store/store'
Vue.directive('scroll', {
inserted: function (el, binding) {
let f = function (evt) {
if (binding.value(evt, el)) {
window.removeEventListener('scroll', f)
}
}
window.addEventListener('scroll', f)
}
})
2019-05-21 15:41:19 +00:00
Vue.config.productionTip = false
new Vue({
2019-05-22 12:51:57 +00:00
store,
2019-05-21 15:41:19 +00:00
render: h => h(App),
}).$mount('#app')