uni-app中nvue页面如何引入自定义组件
将组件在main.js文件全局注册之后,在nvue页面进行调用,组件不显示
main.js
import overtime from './components/overtime.vue'
Vue.component('overtime', overtime)
nvue页面中使用
<template>
<view>
<overtime />
</view>
</template>
uni-app中nvue页面如何引入自定义组件
将组件在main.js文件全局注册之后,在nvue页面进行调用,组件不显示
main.js
import overtime from './components/overtime.vue'
Vue.component('overtime', overtime)
nvue页面中使用
<template>
<view>
<overtime />
</view>
</template>
1 个回复
爱豆豆 - 办法总比困难多
cli创建的还是hbx创建的?
直接components右键新建组件不用引入就可以全局使用的 你试试
参考文档:https://uniapp.dcloud.net.cn/collocation/pages.html#easycom