mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 08:33:53 +00:00
e7cc2757c3
Co-authored-by: Alexander Lichter <manniL@gmx.net>
13 lines
178 B
Vue
13 lines
178 B
Vue
<template>
|
|
<pre>{{ userAgent }}</pre>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
middleware: 'user-agent',
|
|
asyncData ({ userAgent }) {
|
|
return { userAgent }
|
|
}
|
|
}
|
|
</script>
|