mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
afcaaff57d
Co-authored-by: Daniel Roe <daniel@roe.dev> Co-authored-by: Pooya Parsa <pyapar@gmail.com>
18 lines
250 B
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>
|