mirror of
https://github.com/tenrok/vue-form-wizard.git
synced 2026-05-17 21:09:36 +03:00
50 lines
1.7 KiB
HTML
50 lines
1.7 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>vue-form-wizard - A vue based tab/form wizard</title>
|
|
<meta name="description" content="A vue based tab/form wizard">
|
|
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
|
<link rel="stylesheet" href="//unpkg.com/docsify/lib/themes/vue.css">
|
|
<link rel="stylesheet" href="https://rawgit.com/cristijora/vue-form-wizard/master/dist/vue-form-wizard.min.css">
|
|
<link rel="stylesheet" href="https://rawgit.com/lykmapipo/themify-icons/master/css/themify-icons.css">
|
|
<link rel="stylesheet" href="https://unpkg.com/element-ui@1.3.4/lib/theme-default/index.css">
|
|
<link rel="stylesheet" href="https://unpkg.com/vuep/dist/vuep.css">
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
</body>
|
|
<script>
|
|
window.$docsify = {
|
|
name: 'vue-form-wizard',
|
|
repo: 'https://github.com/cristijora/vue-form-wizard'
|
|
}
|
|
</script>
|
|
<script src="//unpkg.com/docsify/lib/docsify.min.js"></script>
|
|
<script src="https://unpkg.com/babel-standalone/babel.min.js"></script>
|
|
<script src="https://unpkg.com/vue"></script>
|
|
<script src="https://npmcdn.com/vue-router@2.4.0/dist/vue-router.js"></script>
|
|
<script src="https://rawgit.com/cristijora/vue-form-wizard/master/dist/vue-form-wizard.js"></script>
|
|
<script src="https://unpkg.com/element-ui@1.3.4/lib/index.js"></script>
|
|
<script src="https://unpkg.com/vuep"></script>
|
|
|
|
<style type="text/css">
|
|
.vuep{
|
|
height: inherit !important;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.vuep-editor,
|
|
.vuep-preview{
|
|
width:100%;
|
|
}
|
|
|
|
.cm-s-material .cm-error{
|
|
color: rgba(255, 83, 112, 1);
|
|
background-color: inherit !important;
|
|
}
|
|
|
|
</style>
|
|
</html>
|