Nuxt/examples/markdownit/pages/index.vue
2017-10-28 00:20:12 +08:00

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>