Skip to content

Commit 34c902c

Browse files
committed
fix(Dashboard): b-card no-body IE SCRIPT1046 issue
SCRIPT1046: Multiple definitions of a property not allowed in strict mode
1 parent 57ac676 commit 34c902c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Vue_Full_Project/src/views/Dashboard.vue

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<div class="animated fadeIn">
33
<b-row>
44
<b-col sm="6" lg="3">
5-
<b-card no-body class="bg-primary" :no-body="true">
5+
<b-card no-body class="bg-primary">
66
<b-card-body class="pb-0">
77
<b-dropdown class="float-right" variant="transparent p-0" right>
88
<template slot="button-content">
@@ -20,7 +20,7 @@
2020
</b-card>
2121
</b-col>
2222
<b-col sm="6" lg="3">
23-
<b-card no-body class="bg-info" :no-body="true">
23+
<b-card no-body class="bg-info">
2424
<b-card-body class="pb-0">
2525
<b-dropdown class="float-right" variant="transparent p-0" right no-caret>
2626
<template slot="button-content">
@@ -38,7 +38,7 @@
3838
</b-card>
3939
</b-col>
4040
<b-col sm="6" lg="3">
41-
<b-card no-body class="bg-warning" :no-body="true">
41+
<b-card no-body class="bg-warning">
4242
<b-card-body class="pb-0">
4343
<b-dropdown class="float-right" variant="transparent p-0" right>
4444
<template slot="button-content">
@@ -56,7 +56,7 @@
5656
</b-card>
5757
</b-col>
5858
<b-col sm="6" lg="3">
59-
<b-card no-body class="bg-danger" :no-body="true">
59+
<b-card no-body class="bg-danger">
6060
<b-card-body class="pb-0">
6161
<b-dropdown class="float-right" variant="transparent p-0" right>
6262
<template slot="button-content">

0 commit comments

Comments
 (0)