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

18 lines
250 B
Vue
Raw Normal View History

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