浏览代码

Use window jQuery instead

zhixin 6 年之前
父节点
当前提交
2f273f0144
共有 1 个文件被更改,包括 1 次插入2 次删除
  1. 1 2
      src/vue/BootstrapTable.vue

+ 1 - 2
src/vue/BootstrapTable.vue

@@ -3,8 +3,7 @@
 </template>
 
 <script>
-import $ from 'jquery'
-
+const $ = window.jQuery
 const deepCopy = arg => {
   return $.extend(true, Array.isArray(arg) ? [] : {}, arg)
 }