uniapp使用uview报错Cannot find module ‘@/uni_modules/uview-ui/components

参考:https://github.com/umicro/uView

记录使用uniapp报的错

注意uview目前只支持vue2

按照教程引入uview,然后执行的时候还是会报Cannot find module '@/uni_modules/uview-ui/components意思是找不到uview的组件,然后我反复对比官网配置的东西都对的呀,最后到index.vue发现不能在原来的基础上插入我的新的组件,需要把原来

<template>
	
	<view class="content">
				<h1>uView</h1>
				<view class="text-area">
					<u-icon name="home"></u-icon>
					<text>Home图标</text>
				</view>
				<view style="text-align: center;color: #366092;">
					<u-button type="primary" icon="home">HomeButton</u-button>
				</view>
				<view>
					<u-loading-icon text="加载" textSize="15"></u-loading-icon>
				</view>
	</view>
</template>

直接运行就OK了

你可能感兴趣的:(uni-app,ui)