Nuxt/examples/with-ava/pages/index.vue
Sébastien Chopin 8ab135af55 Prototype 0.1.0 working
Alpha 0.1.0
2016-11-07 02:34:58 +01:00

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>