We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 958520c commit 9b40006Copy full SHA for 9b40006
docs/example/alertDocs.vue
@@ -86,21 +86,22 @@
86
</alert>
87
88
<alert
89
- show="{{showRight}}"
90
- duration="3000"
+ :show.sync="showRight"
+ :duration="3000"
91
type="success"
92
width="400px"
93
placement="top-right"
94
- dismissable>
+ dismissable
95
+>
96
<span class="icon-ok-circled alert-icon-float-left"></span>
97
<strong>Well Done!</strong>
98
<p>You successfully read this important alert message.</p>
99
100
101
- show="{{showTop}}"
102
103
- type="info"
+ :show.sync="showTop"
104
+ type="danger"
105
106
placement="top"
107
dismissable>
0 commit comments