File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed
packages/bootstrap-vue-3/src/components/BTransition Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change 6
6
7
7
<script setup lang="ts">
8
8
import type {Booleanish , TransitionMode } from ' ../../types'
9
- import {isPlainObject } from ' ../../utils'
10
9
import {computed , toRef } from ' vue'
11
10
import {useBooleanish } from ' ../../composables'
12
11
@@ -46,7 +45,7 @@ const fadeProperties = computed(() => {
46
45
const baseProperties = computed (() => ({mode: props .mode , css: true , ... fadeProperties .value }))
47
46
48
47
const computedAttrs = computed (() =>
49
- isPlainObject ( props .transProps )
48
+ props .transProps !== undefined
50
49
? {
51
50
// Order matters here since the props.transProps would get overwritten if it came first
52
51
// But the goal of props.transProps is to overwrite base properties
You can’t perform that action at this time.
0 commit comments