gpt4 book ai didi

javascript - 如何速记在 ES6 中导入对象?

转载 作者:行者123 更新时间:2023-11-30 08:28:49 25 4
gpt4 key购买 nike

在 ES6 javascript 中我有以下内容:

import CommonModule from '../../common';
const { Link } = CommonModule.components;

有什么办法可以把它变成 1-liner 吗?

最佳答案

据我所知,ES6 中没有嵌套解构。你可以这样做:

import { components as C } from '../../common';

// then later

<C.Link>foobar</C.Link>

关于javascript - 如何速记在 ES6 中导入对象?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40954965/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com