wepy2.0中使用vant-weapp组件

末鹿安然 提交于 2019-12-02 12:04:33
npm i vant-weapp -S --production

在项目下的package.json下看是否有了vant字段

最最最重要的,在引入的时候通过module映入

<config>

{

    navigationBarTitleText: 'WePY 2.0 Feature Demo',

    usingComponents: {
    
    panel: '~@/components/panel',
    
    counter: '~counter',
    
    list: '../components/list',
    
    group: '../components/group',
    
    "slide-view": "module:miniprogram-slide-view",
    
    "van-button": "module:vant-weapp/dist/button/index"
    
    }

}

</config>
<van-button type="danger">危险按钮</van-button>

 

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!