mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-06 06:03:58 +00:00
18 lines
188 B
Vue
Executable File
18 lines
188 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>
|