Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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 结合操作组件
- Host: GitHub
- URL: https://github.com/algesthesiah/vueoperating
- Owner: algesthesiah
- Created: 2020-02-28T16:22:37.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-10T19:52:17.000Z (about 2 years ago)
- Last Synced: 2024-09-23T20:06:50.849Z (3 months ago)
- Topics: operating, vue
- Language: Vue
- Homepage:
- Size: 1.5 MB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 14
-
Metadata Files:
- Readme: README.md
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)```