fix:fixed theme-picker bug

This commit is contained in:
Pan 2017-11-29 14:11:25 +08:00
parent dd3e22d5a1
commit 0f5304112c
2 changed files with 4 additions and 4 deletions

View File

@ -7,6 +7,7 @@
<script> <script>
import { getVersion } from '@/utils/index.js' import { getVersion } from '@/utils/index.js'
const version = getVersion('element-ui') // element-ui version from package.json const version = getVersion('element-ui') // element-ui version from package.json
const ORIGINAL_THEME = '#409EFF' // default color const ORIGINAL_THEME = '#409EFF' // default color

View File

@ -266,9 +266,8 @@ export function deepClone(source) {
return targetObj return targetObj
} }
// get dependencies verison from package.json by webpack.DefinePlugin // get dependencies verison from package.json
export function getVersion(name) { export function getVersion(name) {
import('../../package').then(p => { const p = require('../../package')
return p.dependencies[name] return p.dependencies[name]
})
} }