在vue项目中使用Jquery-contextmenu插件的步骤讲解
程序员文章站
2022-05-14 15:18:33
使用步骤:
1、安装:
npm i jquery-contextmenu --save-dev
2、在main.js文件中引包
import jque...
使用步骤:
1、安装:
npm i jquery-contextmenu --save-dev
2、在main.js文件中引包
import jquery_contextmenu from 'jquery-contextmenu' vue.use(jquery_contextmenu) import 'jquery-contextmenu/dist/jquery.contextmenu.css'
注意:
在引入样式时可以点击进去jquery-contextmenu的安装目录中查找对应的css文件,然后按需引入即可
3、使用:
<template> <div> <button class="with-cool-menu">jquery-contextmenu</button> </div> </template> <script> export default { name: "jquery_contextmenu_44", mounted() { $.contextmenu({ selector: '.with-cool-menu', callback: function (key, options) { var m = "clicked: " + key; window.console && console.log(m) || alert(m); }, items: { "edit": {name: "edit", icon: "edit"}, "cut": {name: "cut", icon: "cut"}, copy: {name: "copy", icon: "copy"}, "paste": {name: "paste", icon: "paste"}, "delete": {name: "delete", icon: "delete"}, "sep1": "---------", "quit": { name: "quit", icon: function () { return 'context-menu-icon context-menu-icon-quit'; } } } }); $('.with-cool-menu').on('click', function (e) { console.log('clicked', this); }) } } </script> <style scoped> </style>
效果图:
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对的支持。如果你想了解更多相关内容请查看下面相关链接
上一篇: Python装饰器语法糖
推荐阅读
-
在Vue项目中引入JQuery-ui插件的讲解
-
Vue项目在HTML中使用Animate.cssdonghu动画库的实例讲解
-
在vue项目中使用Jquery-contextmenu插件的步骤讲解
-
在Vue项目中引入JQuery-ui插件的讲解
-
解决vue中使用swiper插件问题及swiper在vue中的用法
-
Vue项目在HTML中使用Animate.cssdonghu动画库的实例讲解
-
在项目碰到在vue中,v-for的索引index在html中的使用方法(详细教程)
-
swiper插件在vue中的使用技巧
-
在Vue项目中取消ESLint代码检测的步骤讲解
-
在vue项目中使用Jquery-contextmenu插件的步骤讲解