一个可以帮你学习拼音的微信小程序。
A wechat miniprogram that helps someone to learn Pinyin.
-
到 GitHub 下载
iView Weapp
的代码,将 dist 目录拷贝到自己的项目中。然后按照如下的方式使用组件,以 Button 为例,其它组件在对应的文档页查看Download the
iview Weapp
repository ongithub
,copy thedist
directory and paste it in root directory.Then use the component as follows,take button as an example.添加需要的组件,在页面的 json 中配置(路径根据自己项目位置配置)
Register components that you used(or you are going to use) in
.json
files ."usingComponents": { "i-button": "../../dist/button/index" }
-
在 wxml 中使用组件:
Using component in
.wxml
files.<i-button type="primary" bind:click="handleClick"> 这是一个按钮 </i-button>