我有一个主题对象,它有许多对象和数组作为值。即,像这样:
export const theme = {
colors: {...list of colors},
breakpoints: [...array of breakpoints],
...
}
现在,假设我想访问另一个文档中的颜色对象和断点数组。目前,我正在导入这样的主题:
import { theme } from '../../theme'
const { colors, breakpoints: bp } = theme
}
我正在使用breakpoints: bp
这样我就可以breakpoints
在bp
我的文件中使用别名。
我想知道的是是否可以在 import 语句中完成所有这些操作。即,不是导入整个theme
对象,而是只导入颜色对象和断点数组。像这样的东西(这个代码不起作用,它只是为了说明这个想法):
import { theme.colors as colors, theme.breakpoints as bp } from '../../theme'
这可能吗?如果是这样,怎么做?
谢谢。