11 2021 档案
摘要:vue2: 1、在main.js同目录下创建common.js文件 function test() { ... } export default { test } 2、在main.js中引入common import common from "./common.js" 3、把common挂载到vue
阅读全文
摘要:element ui 表格没有自带的拖拽排序的功能,只能借助第三方插件Sortablejs来实现 安装Sortable.js npm install sortablejs --save 引入Sortable: import Sortable from ‘sortablejs’ element tab
阅读全文