feat(): initial vue support

This commit is contained in:
Modus Create
2018-10-10 17:04:33 -04:00
committed by Mike Hartington
parent a9b30646fe
commit 73cff0c61a
36 changed files with 9914 additions and 0 deletions

View File

@ -0,0 +1,21 @@
<template>
<div @click="catchIonicGoBack">
<router-view :name="name"/>
</div>
</template>
<script>
import catchIonicGoBack from '../mixins/catch-ionic-go-back.js'
export default {
name: 'IonVueRouter',
mixins: [catchIonicGoBack],
props: {
// A name to call "named views" by
name: {
type: String,
default: 'default',
},
},
}
</script>