An open API service indexing awesome lists of open source software.

https://github.com/harhao/vill-directive


https://github.com/harhao/vill-directive

Last synced: 5 months ago
JSON representation

Awesome Lists containing this project

README

        

# vill-message

> a vue plugins about time directive

## Build Setup

### install the plugin on bash and the sass module support

```
npm install vill-directive --save-dev
```

### register the plugins on global file (main.js)

```
import time from 'vill-directive'
Vue.use(time);
```

### on the vue template file ,you can use it by

```


v-time 指令



v-clock 指令



v-down 指令



export default {
name: "Demo",
data() {
return {
time: "2019-03-20 13:16:00"
};
},
computed: {
now() {
return Date.now();
}
}
};

```
| 指令选项 | 说明 | 类型 | 默认值
|----- | ----- | ----- | -----
| v-clock | 显示时间钟表| - | -
| v-time | 显示当前时间 | String | -
| v-down | 显示输入的时间和当前时间倒计时 | String | -
### demos
![demo](https://github.com/Harhao/vill-directive/blob/master/src/assets/demo.gif)
## License
[MIT](http://opensource.org/licenses/MIT)