Teacher @ Vue School
Full Stack developer (10 years)
Husband and Father
1
2
1
1
2
2
2
<script setup lang="ts">
import { ref } from "vue";
const notes = ref([{ title: "", body: "", createdAt: new Date() }]);
const createNote = () => {
notes.push({
title: "My new note",
body: "hello world",
createdAt: new Date(),
});
};
</script>
2
3
4
4
1
2
3
Summary
1
2
3
TypeScript Courses at Vue School
Workshops
TypeScript + Vue
Workshops
TypeScript + Vue
Vue.js Fundamentals
Composition API
Global State Management with Pinia
Vue 3 New Features
Nuxt 3 Fundamentals
Testing Fundamentals
🙏 Thank you!