Nuxt/examples/essentials/hello-world/app.vue

18 lines
250 B
Vue

<script setup>
const version = 2 + 1
</script>
<template>
<div class="hello">
Hello Nuxt {{ version }}!
</div>
</template>
<style scoped>
.hello {
font-family: Arial, Helvetica, sans-serif;
font-size: 3rem;
padding: 10rem;
}
</style>