1
0
mirror of https://github.com/nuxt/nuxt.git synced 2025-03-01 03:53:25 +00:00
Nuxt/examples/with-ava/pages/index.vue

20 lines
196 B
Vue
Executable File

<template>
<h1 class="red">
Hello {{ name }}!
</h1>
</template>
<script>
export default {
data() {
return { name: 'world' }
}
}
</script>
<style>
.red {
color: red;
}
</style>