npm install -g vue-cli //make sure you have node and npm installed vue init webpack <appname> // eg: vue init webpack myapp cd <appname> // cd myapp npm install npm run dev //server will start in port 8080
npm install -g @vue/cli
npm install -g @vue/cli //then vue create hello-world
vue create my-project # OR vue ui
npm install -g @vue/cli # OR yarn global add @vue/cli
<script type="module"> import Vue from 'https://cdn.jsdelivr.net/npm/vue@2.6.11/dist/vue.esm.browser.js' </script>