mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-06 06:03:58 +00:00
19 lines
334 B
Vue
19 lines
334 B
Vue
<template>
|
|
<Child :env="env" ></Child>
|
|
</template>
|
|
|
|
<script>
|
|
import Vue from 'vue'
|
|
import Component from 'nuxt-class-component'
|
|
import Child from '@/components/Child'
|
|
|
|
@Component({
|
|
components: { Child }
|
|
})
|
|
export default class App extends Vue {
|
|
asyncData({ req }) {
|
|
return { env: req ? 'server' : 'client' }
|
|
}
|
|
}
|
|
</script>
|