The link for Tania Rascia Vue Js blog is given https://www.taniarascia.com/getting-started-with-vue/
Setup for the project: Vue CLI #install with npm
npm i -g @vue/cli @vue/cli-service-global
#create vue app
vue create vue-app
#cd vue-app #npm run serve
This command will start the development server. After this command you can open the vue-app folder from file manager and will see the following directory structure. You will see public folder and an src folder and some ".json" files as well. You will make your components inside the src folder.