I am trying to learn Vue.js for work, and I seem to have the syntax down, but I have a question about creating an overall project.
So far, to create a project, I have had to use npm to create the project (or start the ui, and do it from there).
But I am wondering how I can include Vue without always running serve via command prompt to render it in my browser. For example, if I am creating a website front end with html, css, and some javascript, can I somehow import Vue to that and use it?
I assume with something like this:
<script src="https://unpkg.com/[email protected]"></script>