Max.

Vue.js

Navigation
Sommaire

Vue.js - JavaScript Framework

docs/techno/language/front/vuejs

doc

#Framework#Vue.js#Frontend#Web Development#JavaScript#TypeScript

Reading time: 1 min

Vue.js

Vue.js is a JavaScript framework that is used for web development. Vue.js is a progressive framework that is used to build user interfaces and single-page applications. Vue.js is at the top of my list of JavaScript frameworks that I use for web development.

This website is built with Vue.js, and I have used Vue.js for a lot of projects.

vue
<script setup lang="ts">
import { defineProps } from 'vue'

defineProps<{
  msg: string
}>()

</script>

<template>
  <div>
    <h1>Hello, world!</h1>
    <p>{{ msg }}</p>
  </div>
</template>

<style scoped>
h1 {
  color: red;
}
</style>
Back to projects