mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-14 18:13:54 +00:00
8ab135af55
Alpha 0.1.0
20 lines
218 B
Vue
Executable File
20 lines
218 B
Vue
Executable File
<template>
|
|
<div>
|
|
<p class="red-color">Hello {{ name }}!</p>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data () {
|
|
return { name: 'world' }
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
.red-color {
|
|
color: red;
|
|
}
|
|
</style>
|