Skip to content

Commit a909ff4

Browse files
committed
Allow making Dropdown fluid
1 parent e105485 commit a909ff4

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

src/modules/Dropdown.vue

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<template>
22
<div
33
v-bind:class="[
4+
{fluid},
45
{visible},
56
'ui',
67
{active},
@@ -119,6 +120,11 @@
119120
noResults: 'No results found.'
120121
}
121122
}
123+
},
124+
fluid: {
125+
type: Boolean,
126+
required: false,
127+
default: false
122128
}
123129
},
124130
data() {
@@ -420,4 +426,4 @@ Ignoring item: `, item)
420426
}
421427
},
422428
}
423-
</script>
429+
</script>

0 commit comments

Comments
 (0)