1.0.0 • Published 6 years ago

vstar v1.0.0

Weekly downloads
-
License
ISC
Repository
-
Last release
6 years ago

vpay

vue移动端星级打分,仿美团打分。

动态图演示

仿美团评分

插件的安装

NPM

npm i vstar

引入插件

import Vue from 'vue';
import vstar from 'vstar';

Vue.use(vstar);

基本用法

<vstar ref="star"   
    @showResult="false"
    @release="release"
></vstar>

API

参数说明类型默认值
showResult评分结果的显示隐藏Booleanfalse
score分数Number''
comment评论String''
ref获取当前插件实例String-
release当前插件调用成功的回调Function-

Event

事件名说明参数
show开启插件-
hide关闭插件-
release评分成功的回调-

用法示例:

调起插件:

this.$refs.star.show(true).then(res => {

})

评分成功:

this.$emit("release")

Build Setup

# install dependencies
npm install

# serve with hot reload at localhost:8080
npm run serve

# build for production with minification
npm run build

# build for production and view the bundle analyzer report
npm run build --report