mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
20 lines
262 B
Vue
20 lines
262 B
Vue
<template lang="md">
|
|
# Hello World!
|
|
|
|
Current route is: {{ $route.path }}
|
|
|
|
Data model is: {{ model }}
|
|
|
|
<nuxt-link to="/about">Goto About</nuxt-link>
|
|
</template>
|
|
|
|
<<script>
|
|
export default {
|
|
data () {
|
|
return {
|
|
model: 'abc'
|
|
}
|
|
}
|
|
}
|
|
</script>
|