[Vuejs]-Vue select and other Vue library import to new Vue with npm without using CDN

0๐Ÿ‘

โœ…

  1. Download vue.js from https://unpkg.com/vue@latest
  2. In the page, replace the value of src in .
    changes
<script src="https://unpkg.com/vue@latest"></script>

to

<script src="./vue.js"></script>

Leave a comment