Challenge - 5 Problems
Nuxt Mastery
Get all challenges correct to earn this badge!
Test your skills under time pressure!
❓ component_behavior
intermediate2:00remaining
What is the output of this Nuxt page component?
Consider this Nuxt 3 page component. What will the user see rendered in the browser?
Vue
<template>
<h1>{{ title }}</h1>
<p>{{ description }}</p>
</template>
<script setup>
const title = 'Welcome to Nuxt'
const description = 'This is a simple Nuxt 3 page.'
</script>Attempts:
2 left
💡 Hint
Remember that variables declared in