Nuxt/test/fixtures/spa/pages/custom.vue

15 lines
208 B
Vue
Raw Normal View History

2017-10-07 15:24:15 +00:00
<template>
<div>
Hello SPA!
</div>
</template>
<script>
export default {
layout: 'custom',
mounted () {
window.customMounted = (+window.customMounted) + 1
console.log('mounted')
}
}
</script>