react 新建文件定义组件后在其他文件内引入.

如题,建一个文件,定义组件Mycomponent,怎样在App.js内引入并使用.




紫衣仙女
浏览 902回答 2
2回答

汪汪一只猫

可以用create-react-app搭建一个项目试一下,Mycomponent需要使用export default Mycomponent导出;这样在App.js里面就可以用下列方式引入和使用了,注意引入的路径是否正确import Mycomponent from './Mycomponent';class App extends Component {&nbsp; &nbsp; render() {&nbsp; &nbsp; &nbsp; &nbsp; <Mycomponent/>&nbsp; &nbsp; }}

三国纷争

你需要一个叫路由的东东
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript