refund.page.js 260 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 import Vue from 'vue'; import lazyload from 'vue-lazyload'; import refund from 'me/refund.vue'; import filter from 'common/vue-filter'; filter(Vue); Vue.use(lazyload, { preLoad: 3 }); new Vue({ el: '#refund', components: { refund } });