2
0
mirror of https://github.com/tenrok/vue-form-wizard.git synced 2026-05-17 03:59:36 +03:00

Provide dist builds (js && css)

This commit is contained in:
cristijora
2017-04-16 13:05:09 +03:00
parent 88b47de3c9
commit 7cc9c5aef4
5 changed files with 39 additions and 1 deletions
-1
View File
@@ -1,6 +1,5 @@
.DS_Store .DS_Store
node_modules/ node_modules/
dist/
npm-debug.log* npm-debug.log*
yarn-debug.log* yarn-debug.log*
yarn-error.log* yarn-error.log*
+36
View File
@@ -0,0 +1,36 @@
<!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>
+1
View File
File diff suppressed because one or more lines are too long
+1
View File
File diff suppressed because one or more lines are too long
+1
View File
File diff suppressed because one or more lines are too long