2
0
mirror of https://github.com/tenrok/vue-form-wizard.git synced 2026-06-05 15:12:23 +03:00
Files
vue-form-wizard/dist/example/index.html
T
2017-04-16 13:05:09 +03:00

37 lines
1.1 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>webpack-vue-clean</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="./../vue-tab-wizard.min.css">
<meta name="viewport" content="initial-scale=1, maximum-scale=1">
</head>
<body>
<div id="app">
<div class="col-xs-8 col-xs-offset-2">
<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>
</div>
<!-- built files will be auto injected -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.2.6/vue.min.js"></script>
<script src="./../vue-tab-wizard.js"></script>
<script >
Vue.use(VueTabWizard)
new Vue({
el: '#app',
})
</script>
</body>
</html>