<script setup>
const name = 'your-name'
const textClass = 'text'
</script>
<template>
<h1 :class="textClass">Hello {{ name }}</h1>
</template>
<style scoped>
.text {
color: red;
}
</style>