2
0
mirror of https://github.com/tenrok/vue-form-wizard.git synced 2026-05-17 04:29:36 +03:00
Files
vue-form-wizard/dev/App.vue
T
2017-04-15 23:05:30 +03:00

23 lines
434 B
Vue

<template>
<div id="app">
<tab-wizard>
<tab-content title="Personal details">
My first tab content
</tab-content>
<tab-content title="Additional Info">
My second tab content
</tab-content>
<tab-content title="Last step">
Yuhuuu! This seems pretty damn simple
</tab-content>
</tab-wizard>
</div>
</template>
<script>
export default {
name: 'app',
}
</script>