刮刮前端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
453530270@qq.com c78b3f46a6 仓库初始化 3 years ago
..
pages 仓库初始化 3 years ago
static 仓库初始化 3 years ago
wxcomponents 仓库初始化 3 years ago
App.vue 仓库初始化 3 years ago
README.md 仓库初始化 3 years ago
main.js 仓库初始化 3 years ago
manifest.json 仓库初始化 3 years ago
pages.json 仓库初始化 3 years ago

README.md

小程序自定义组件使用示例

注意事项

  • 小程序自定义组件需放在wxcomponents目录
  • 使用的组件需添加到pages.json文件内
  • 原组件内事件名称需修改为驼峰命名,如:
// wxcomponents/vant-weapp/dist/nav-bar/index.js
this.$emit('click-left');
// 改为
this.$emit('clickLeft');