Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/algesthesiah/vueoperating

Vue mini-confim 结合操作组件
https://github.com/algesthesiah/vueoperating

operating vue

Last synced: about 1 month ago
JSON representation

Vue mini-confim 结合操作组件

Awesome Lists containing this project

README

        

# vue-operating

> A vue component contains an action group, an edit delete button, and a mini confirmation box

## Usage

``` html



hover 查看效果





  • {{ it.name }}





export default {
data() {
return {
show: false,
tags: [
{ name: 'webpack' },
{ name: 'vue' },
{ name: 'react' },
{ name: 'nodejs' },
{ name: 'javascript' },
],
}
},
methods: {
edit(e) {
alert(e)
},
submit(e) {
alert(e)
},
},
}

```

### DEMO
- [在线网址](https://coding.algesthesiahunter.top/VueOperating)
- [Online site]()
### NPM

``` bash
# use npm
npm i vue-operating -S

# use yarn
yarn add vue-operating
```

### Import Plugins

``` js
import VueOperating from 'vue-operating'
Vue.use(VueOperating)

```