mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-24 06:35:10 +00:00
14 lines
212 B
Vue
14 lines
212 B
Vue
|
<template>
|
||
|
<p>{{ name }}</p>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
async data (context, callback) {
|
||
|
setTimeout(function () {
|
||
|
callback(null, { name: 'Callback Nuxt.js' })
|
||
|
}, 10)
|
||
|
}
|
||
|
}
|
||
|
</script>
|