mirror of
https://github.com/tenrok/vue-select.git
synced 2026-05-17 02:29:37 +03:00
201e135964
- separate environment for developing docs - clear out discarded couscous files - start converting docs markdown
39 lines
1.1 KiB
HTML
39 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Vue Select Dev</title>
|
|
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet">
|
|
<!-- <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.5/css/bootstrap.min.css"> -->
|
|
<style>
|
|
html,
|
|
body,
|
|
#app {
|
|
height: 100vh;
|
|
}
|
|
|
|
#app {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.v-select {
|
|
width: 25em;
|
|
margin: 1em;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="app">
|
|
<v-select placeholder="multiple, taggable" multiple taggable :options="options" no-drop></v-select>
|
|
<v-select placeholder="multiple, push-tags, taggable" multiple push-tags taggable :options="[{label: 'Foo', value: 'foo'}]"></v-select>
|
|
<!-- <v-select placeholder="multiple, push-tags" multiple push-tags></v-select> -->
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|