forked from RonyNasr/vue-select-checkbox
-
Notifications
You must be signed in to change notification settings - Fork 1
/
dev.html
57 lines (50 loc) · 2.6 KB
/
dev.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Vue Select Dev</title>
<!--<link href="https://cdnjs.cloudflare.com/ajax/libs/foundation/6.3.1/css/foundation.min.css" rel="stylesheet">-->
<!--<link href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.3.2/css/bulma.min.css" rel="stylesheet">-->
<!--<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet">-->
<!-- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0-alpha.6/css/bootstrap.min.css"> -->
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<style>
html,
body,
#app {
height: 100vh;
font-family: 'Roboto', 'Helvetica', sans-serif;
}
#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 :show-tag="false" :options="['CAT', 'DOG', 'COW']" :addOption="true" :searchable="false" :close-on-select="false"></v-select>
<v-select placeholder="default" :options="options"></v-select> -->
<v-select placeholder="multiple" multiple :options="options" :close-on-select="false"></v-select>
<!-- <v-select placeholder="multiple removable" removable multiple :options="options"></v-select>
<v-select placeholder="multiple with checkboxed" :close-on-select="false" multiple checkboxed searchable :options="options"></v-select>
<v-select placeholder="multiple, taggable" multiple taggable :options="options" no-drop></v-select>
<v-select placeholder="multiple, taggable, push-tags" multiple push-tags taggable :options="[{label: 'Foo', value: 'foo'}]"></v-select>
<v-select placeholder="multiple, closeOnSelect=true" multiple :options="['cat', 'dog', 'bear']"></v-select>
<v-select id="keepPlaceholderId" placeholder="multiple, closeOnSelect=false" searchable :deselectable="false" multiple :close-on-select="false" :options="[{label: 'Foo', value: '1'}, {label: 'bar', value: '2'}, {label: 'Foo', value: '3'}]"></v-select>
<v-select placeholder="unsearchable" :options="options" :searchable="false"></v-select>
<v-select placeholder="search github.." label="full_name" @search="search" :options="ajaxRes"></v-select> -->
</div>
</body>
</html>
<style>
/*#keepPlaceholderId.v-select .selected-tag {
display: none !important;
}*/
</style>