Introduction
Basic
Reactivity
Styles
Rendering
Event Handling
Props
Made by vchan14©
xxxxxxxxxx
<template>
<!--Referencing variables using the "Mustache" syntax-->
<h1>Hello {{ name }}!</h1>
</template>
<script setup>
const name = "world";
</script>