limo-components

limo小程序组件库

Usage no npm install needed!

<script type="module">
  import limoComponents from 'https://cdn.skypack.dev/limo-components';
</script>

README

Limo-Components

Limo Components 是一套组件化、可复用、易扩展的 UI 组件库。

官网WIP

预览

安装

$ npm install limo-components --save

如何使用

按照如下的方式使用组件,以 count-down 倒计时组件为例,其它组件在对应的文档页查看:

在 page.json 中引入组件

"usingComponents": {
    "button": "limo-components/es/count-down/index",
}

在 page.axml 中使用组件

<count-down time="{{ 5000 }}" />

详细使用说明请参照官方文档使用自定义组件