mirror of
https://github.com/nuxt/nuxt.git
synced 2024-12-03 10:57:18 +00:00
14 lines
186 B
Vue
14 lines
186 B
Vue
<template>
|
|
<div>
|
|
Hello SPA!
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
mounted () {
|
|
window.indexMounted = (+window.indexMounted) + 1
|
|
console.log('mounted')
|
|
}
|
|
}
|
|
</script> |