Show only client

This commit is contained in:
Sebastien Chopin 2017-08-18 16:57:32 +02:00
parent b83f897339
commit 53685b6e4d

View File

@ -7,9 +7,9 @@
<script>
export default {
asyncData ({ isStatic, isServer }) {
asyncData ({ isServer }) {
return {
name: isStatic ? 'static' : (isServer ? 'server' : 'client')
name: (isServer ? 'server' : 'client')
}
}
}