自定义组件按需引入,在h5端可以,微信小程序不可以
定义方法
vcomponents/index.js 文件
import vCheckbox from './checkbox/checkbox.vue'
export {
vCheckbox
}
使用方法
import { vCheckbox } from '@/vcomponents/index.js'
export default {
components: { vCheckbox }
}
在h5端没有问题,但是在微信小程序端报错,看了一下编译完的.json 文件
编译成了以下样子
"usingComponents": {
"v-checkbox": "/vcomponents/index"
}
请问一下 是不支持呢,还是我哪里写的有问题
张张张啊 (作者)
不行
2019-09-22 23:01
l***@163.com
回复 张张张啊: 这个问题解决了吗
2020-09-28 15:33