Browse Source

Use window jQuery instead

zhixin 6 years ago
parent
commit
2f273f0144
1 changed files with 1 additions and 2 deletions
  1. 1 2
      src/vue/BootstrapTable.vue

+ 1 - 2
src/vue/BootstrapTable.vue

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