👋 Hi , this is my open sourced guide for Vue.js below down I have also added some resources for Vue.js which will help you to start your journey with it and become a vue developer. Please feel free to add resources or guide for vue.js
Vue is a JavaScript framework for building user interfaces. It builds on top of standard HTML, CSS and JavaScript, and provides a declarative and component-based programming model that helps you efficiently develop user interfaces, be it simple or complex.
- Progressive Framework
- Approachable
- Versatile
- Performant
- Reactivity
- Testable
- Standarized Tools
- Vue Router - Client Side Routing
- Vuex - State Management
- Vue Test Utils - Unit Testing Components
- Vue Devtools - Web Extensions & Debugging
- Vue CLI - Creating Projects
<template> <--HTML--> </template>
<script> <--JavaScript--> </script>
<style> <--Css--> </style>
The official Vue build setup is based on Vite
npm init vue@latest
Add this CDN to your project
<script src="https://unpkg.com/vue@3"></script>