0.1.0 • Published 3 years ago

vue-fy-lib v0.1.0

Weekly downloads
-
License
-
Repository
-
Last release
3 years ago

vue-plugin-fy

github仓库地址

常用工具封装库

Setup

# 安装依赖
npm install vue-fy-lib --save

# 注册使用(main.js)
import vuefyLib from "vue-fy-lib"
Vue.use(vuefyLib)

Use

fy-scroll-panel

基于better-scroll封装的滚动面板组件

<fy-scroll-panel width="100vh" :data:data>
    <ul>
        <li v-for="item in 5" :key=item>
            {{item}}
        </li>
    </ul>
</fy-scroll-panel>