Welcome to the third recording of my Vue.js course! Get it here on Udemy.
This is a information dense course where we build a full blogging application, including a real back-end with authentication and authorization. We go deep into Vue's reactivity system, and create some complex components.
<script setup>
- Vite + ES modules
- Vuex -> Pinia (official state management solution)
- Composables
- Reusable components
- Design Patterns, modular code
- TypeScript for type safety
- real authentication and authorization using jsonwebtoken (JWT)
- Basic server with Node.js + Express
- Deploy to production
- Testing module (coming soon)
Bulma: @import "https://cdn.jsdelivr.net/npm/bulma@0.9.3/css/bulma.min.css";
Modal
<div class="modal" style="display: block; color: white;">
<div class="modal-background">
<div class="modal-content">
<div id="modal"></div>
</div>
</div>
<button class="modal-close is-large"></button>
</div>