webfansplz / vuejs-challenges

Collection of Vue.js challenges
https://vuejs-challenges.netlify.app/
MIT License
2.68k stars 187 forks source link

1 - Hello World #2689

Open LauGM opened 2 months ago

LauGM commented 2 months ago
// your answers
LauGM commented 2 months ago
leon11081991 commented 1 month ago
<script setup>
import { ref } from "vue"
const msg = ref("Hello World")
</script>

<template>
  <div>
    <h1>{{msg}}</h1>
  </div>
</template>

Text interpolation using the "Mustache" syntax (double curly braces)