index.demo.js 452 Bytes
Newer Older
wangcong committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/**
 * 最后打包发布的时候会使用此文件,请将main.js中的引用部分转移到这里
 * 不要写入公共依赖文件夹,不要引入iview,iviewex和vuex
 */
import Vue from 'vue'
import InvoiceList from './src/views/invoice-list'


// 在此处引入vuex和router,将下面导出对象改为{app: App, store: store, router: router}
// import store from './Store'
export default {
  InvoiceList: {
    app: InvoiceList,
  },
}