Nuxt/examples/hello-world/pages/about.vue

14 lines
170 B
Vue
Raw Normal View History

2016-11-07 01:34:58 +00:00
<template>
2016-11-27 12:39:52 +00:00
<p>Hi from {{ name }}</p>
2016-11-07 01:34:58 +00:00
</template>
<script>
export default {
2016-11-23 12:40:25 +00:00
data ({ req }) {
return {
name: req ? 'server' : 'client'
}
}
}
</script>