zoukankan      html  css  js  c++  java
  • require.context


    import Vue from 'vue'
    import Vuex from 'vuex'
    import getters from './getters'

    Vue.use(Vuex)


    const modulesFiles = require.context('./modules', true, /.js$/)

    // 您不需要从“./modules/app”导入应用程序。`
    // 它将自动要求模块文件中的所有Vuex模块
    const modules = modulesFiles.keys().reduce((modules, modulePath) => {
    // set './app.js' => 'app'
    const moduleName = modulePath.replace(/^./(.*).w+$/, '$1')
    const value = modulesFiles(modulePath)
    modules[moduleName] = value.default
    return modules
    }, {})

    const store = new Vuex.Store({
    modules,
    getters
    })

  • 相关阅读:
    Python 基础
    Python 基础
    Python 基础
    Python 基础
    Python 基础
    Python 基础
    Python 基础
    Python 基础
    Python 基础
    Python 基础
  • 原文地址:https://www.cnblogs.com/hss-blog/p/12106675.html
Copyright © 2011-2022 走看看