<template>
  <div>
    <h1>{{ title }}</h1>
    <p>text</p>
  </div>
</template>
<script setup lang="ts">
const title = "Hello";
</script>
<style scoped>
div {
  padding: 10px;
  color: red;
}
</style>
