vue-calculator
vue-calculator copied to clipboard
No starter files/settings for video?
Hi @codyseibert
It seems that there is no starter files for your video here: https://www.youtube.com/watch?v=m1_ih43p24s, and you did not show the settings you used for setting up the project with Vue CLI.
Can you please provide some of this?
Thanks.
@codyseibert Can you please comment on this?
You have to run command "npm install" before you run "npm run serve".
-
on the root directory of your project , on the command line: npm install (this will install dependency files you need.
-
npm run serve
-
wait for browser to open
What I have done:
- Install npm and node
- Install vue/cli globally:
npm install -g @vue/cli - Create the default Vue project on the folder:
vue create client - Selected default options
This created a project similar to that one at the start of the video.
Then you can do as @mmarioolive said:
- Start the Vue server
npm run serve - If the browser don't open, acess the URL returned by npm:
App running at:
- Local: http://localhost:8080/
- Network: http://<ip>:8080/