我在应用程序中使用了很多图表,我想处理vuex存储中所有图表的颜色。我已经使用下面的代码来做到这一点。
store.js
import Vue from 'vue'
import Vuex from 'vuex'
// modules
import settings from './modules/settings';
Vue.use(Vuex);
export const store = new Vuex.Store({
modules: {
settings
}
})
图表配置.js
/**
* Change all chart colors
*/
import { store } from "../store/store";
const { primary, warning, error, info, success } = store.getters.chartColors;
export const ChartConfig = {
color: {
'primary': primary,
'warning': warning,
'danger': error,
'success': success,
'info': info,
'white': '#fff',
'lightGrey': '#E8ECEE'
},
lineChartAxesColor: '#E9ECEF',
legendFontColor: '#AAAEB3', // only works on react chart js 2
chartGridColor: '#EAEAEA',
axesColor: '#657786',
shadowColor: 'rgba(0,0,0,0.3)'
}
文件夹结构:
src
-components
-constants
--chart-config.js
-store
--store.js
-views
App.vue
main.js
每当我尝试运行npm run dev命令时都会出现此类错误
95% emitting HtmlWebpackPlugin/media/iron/631dbce0-858c-4a8c-bef4-
a01a6a92507f/shubham/work/dev/vue/myapp/node_modules/toposort/index.js:35
throw new Error('Cyclic dependency' + nodeRep)
答案 0 :(得分:0)
更新2018-07-31
几天前,在使用由@vue/cli
(Vue CLI 3)创建的vue应用程序时,我遇到了同样的问题。但是最近they fixed it。
旧答案
对我来说,解决方案是在项目根目录(package.json
之后)中创建vue.config.js
的resets chunksSortMode
of the package html-webpack-plugin
:
vue.config.js
module.exports = {
chainWebpack: config => {
config
.plugin('html')
.tap(args => {
args[0].chunksSortMode = 'none'
return args
})
}
}