+8
-2
lines changedFilter options
+8
-2
lines changed Original file line number Diff line number Diff line change
@@ -9,6 +9,11 @@ export const props = {
9
9
fluid: {
10
10
type: Boolean,
11
11
default: false
12
+
},
13
+
breakpoint: {
14
+
// New in Bootstrap v4.4.x
15
+
type: String,
16
+
default: null
12
17
}
13
18
}
14
19
@@ -22,8 +27,9 @@ export const BContainer = /*#__PURE__*/ Vue.extend({
22
27
props.tag,
23
28
mergeData(data, {
24
29
class: {
25
-
container: !props.fluid,
26
-
'container-fluid': props.fluid
30
+
container: !props.fluid && !props.breakpoint,
31
+
'container-fluid': props.fluid && !props.breakpoint,
32
+
[`container-${props.breakpoint}`]: !!props.breakpoint
27
33
}
28
34
}),
29
35
children
You can’t perform that action at this time.
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4