mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
16 lines
222 B
Vue
16 lines
222 B
Vue
|
<template>
|
||
|
<h1>
|
||
|
Hello from {{ name }}
|
||
|
</h1>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
asyncData () {
|
||
|
return {
|
||
|
name: process.static ? 'static' : (process.server ? 'server' : 'client')
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
</script>
|