mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 08:33:53 +00:00
e7cc2757c3
Co-authored-by: Alexander Lichter <manniL@gmx.net>
20 lines
197 B
Vue
Executable File
20 lines
197 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>
|