https://github.com/chingfanglin/vuejs-contextmenu-lan
vue contextmenu
https://github.com/chingfanglin/vuejs-contextmenu-lan
contextmenu vue
Last synced: about 2 months ago
JSON representation
vue contextmenu
- Host: GitHub
- URL: https://github.com/chingfanglin/vuejs-contextmenu-lan
- Owner: chingfanglin
- Created: 2018-07-18T09:33:34.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-07-18T10:08:23.000Z (over 7 years ago)
- Last Synced: 2024-02-27T10:20:44.817Z (about 2 years ago)
- Topics: contextmenu, vue
- Language: Vue
- Homepage: https://chingfanglin.github.io/vuejs-contextmenu-lan/
- Size: 277 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# vuejs-contextmenu-lan
> Contextmenu component for vue2
## install vuejs-contextmenu-lan
npm install vuejs-contextmenu-lan -s
yarn add vuejs-contextmenu-lan
## 預覽 Preview


[Demo](https://chingfanglin.github.io/vuejs-contextmenu-lan/)
## Vue mount
// mount with global
import ContextMenu from 'vuejs-contextmenu-lan'
Vue.use(ContextMenu)
## Use
Test Area
export default {
name: 'app',
data () {
return {
contextMenuData: {
menuData: {},
menuName: 'content-menu',
position: {
x: null,
y: null
},
menulists: [
{
fnHandler: this.test1, // Binding events
btnName: 'Test Class 1' // The name of the menu option
},
{
fnHandler: this.test2,
btnName: 'Test Class 2'
},
{
fnHandler: this.test3,
btnName: 'Test Class 3'
},
{
fnHandler: this.test4,
btnName: 'Test Class 4'
},
{
fnHandler: this.test5,
btnName: 'Test Class 5'
}
]
}
}
},
methods: {
open (val) {
event.preventDefault()
const x = event.clientX
const y = event.clientY
this.contextMenuData.position = { x, y }
this.contextMenuData.menuData = val
},
test1 (val) {
console.log('test1: ', val)
},
test2( val) {
console.log('test2: ', val)
},
test3 (val) {
console.log('test3: ', val)
},
test4 (val) {
console.log('test4: ', val)
},
test5 (val) {
console.log('test5: ', val)
}
}
}
## 許可協議 License
The MIT License (MIT)
Copyright (c) 2018 林慶芳
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.