// mutation-types.js export const SOME_MUTATION = 'SOME_MUTATION' export const SOME_MUTATION_1 = 'SOME_MUTATION_1'
Je souhaite importer mutation-types.js, comment mieux l'écrire ?
小伙看你根骨奇佳,潜力无限,来学PHP伐。
import * as types from 'mutation-types.js' // types.SOME_MUTATION types.SOME_MUTATION_1
import * as TYPES from './mutation-types'; console.log(TYPES.SOME_MUTATION)
如果你想全部导入: import * as mutationTypes from './mutation-types'; 如果你只是想导入 mutation-types里的几个可以: import {SOME_MUTATION,SOME_MUTATION_1} from './mutation-types';
Vous pouvez mettre SOME_MUTATION et SOME_MUTATION_1 dans un objet d'export :
let obj = { SOME_MUTATION : 'SOME_MUTATION', SOME_MUTATION_1 : 'SOME_MUTATION_1' } export obj
http://es6.ruanyifeng.com/#do...
Introduireimporter * en tant que types à partir de '../../mutation-types' ;Utiliser types.SOME_MUTATIONtypes.SOME_MUTATION_1
import * as types from './types';
Ensuite, utilisez les types[nom de l'export] à utiliser
Vous pouvez mettre SOME_MUTATION et SOME_MUTATION_1 dans un objet d'export :
http://es6.ruanyifeng.com/#do...
Introduire
importer * en tant que types à partir de '../../mutation-types' ;
Utiliser
types.SOME_MUTATION
types.SOME_MUTATION_1
Ensuite, utilisez les types[nom de l'export] à utiliser