mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 08:33:53 +00:00
examples: Use process.server instead
This commit is contained in:
parent
3d98a8be7f
commit
70cfc7fcc9
@ -7,9 +7,9 @@
|
||||
|
||||
<script>
|
||||
export default {
|
||||
asyncData ({ isStatic, isServer }) {
|
||||
asyncData () {
|
||||
return {
|
||||
name: isStatic ? 'static' : (isServer ? 'server' : 'client')
|
||||
name: process.static ? 'static' : (process.server ? 'server' : 'client')
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1,3 +1,3 @@
|
||||
export default function (context) {
|
||||
context.userAgent = context.isServer ? context.req.headers['user-agent'] : navigator.userAgent
|
||||
context.userAgent = process.server ? context.req.headers['user-agent'] : navigator.userAgent
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user