Nuxt/test/fixtures/spa/pages/custom.vue
2017-10-28 23:01:46 +02:00

13 lines
206 B
Vue

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