1.0.1 • Published 11 months ago

weapp-icon-button v1.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
11 months ago

Weapp Icon Button

🌞 微信小程序图标按钮自定义组件

更多微信小程序开发工具,查看 微信小程序开发全家桶

安装

图标按钮依赖于 vant-weapp务必先安装 Vant Weapp

npm i @vant/weapp -S --production

npm i weapp-icon-button

注意:在小程序中使用npm包前,需先构建 npm

使用

图标按钮相关参数可查看源码 properties 字段,或参考 Button 按钮

// index.json

{
  "component": true,
  "usingComponents": {
    "icon-button": "weapp-icon-button/IconButton/IconButton",
  }
}
<icon-button
  size="large"
  type="default"
  icon="like"
  icon-size="1.6em"
  bind:click="onClick"
/>

<icon-button
  size="normal"
  type="primary"
  icon="like"
>
  <view class="text-xs">客服</view>
  <button open-type="contact" class="absolute inset-0 z-10 w-full h-full opacity-0"></button>
</icon-button>

<icon-button
  type="info"
  plain
  image="/light.png"
/>

<icon-button
  size="small"
  type="warning"
  icon="user"
  disabled
/>

<icon-button
  size="mini"
  type="danger"
  plain
  icon="user-o"
  loading
  loading-type="spinner"
/>

WeChat12fc6259092106a585ca1a34d68623bd.jpg

1.0.1

11 months ago

1.0.0

11 months ago