Nuxt/examples/markdownit/pages/index.vue
pooya parsa e7cc2757c3 refactor: update eslint-config to 1.x
Co-authored-by: Alexander Lichter <manniL@gmx.net>
2019-07-10 15:15:49 +04:30

20 lines
266 B
Vue

<template lang="md">
# Hello World!
Current route is: {{ $route.path }}
Data model is: {{ model }}
<NuxtLink to="/about">Goto About</NuxtLink>
</template>
<script>
export default {
data () {
return {
model: 'I am index'
}
}
}
</script>