// mutation-types.js
export const SOME_MUTATION = 'SOME_MUTATION'
export const SOME_MUTATION_1 = 'SOME_MUTATION_1'
I want to import mutation-types.js, how to write it better?
大家讲道理2017-05-19 10:13:30
import * as types from 'mutation-types.js'
// types.SOME_MUTATION types.SOME_MUTATION_1
習慣沉默2017-05-19 10:13:30
import * as TYPES from './mutation-types';
console.log(TYPES.SOME_MUTATION)
PHPz2017-05-19 10:13:30
如果你想全部导入:
import * as mutationTypes from './mutation-types';
如果你只是想导入 mutation-types里的几个可以:
import {SOME_MUTATION,SOME_MUTATION_1} from './mutation-types';
ringa_lee2017-05-19 10:13:30
You can put SOME_MUTATION and SOME_MUTATION_1 in an export object:
let obj = {
SOME_MUTATION : 'SOME_MUTATION',
SOME_MUTATION_1 : 'SOME_MUTATION_1'
}
export obj
给我你的怀抱2017-05-19 10:13:30
Introduce
import * as types from '../../mutation-types';
Use
types.SOME_MUTATION
types.SOME_MUTATION_1