Nuxt/examples/advanced/testing/app.vue

17 lines
214 B
Vue
Raw Normal View History

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