Skip to content

Commit 69c0cf5

Browse files
author
raj kamal
committed
formatted html code
1 parent d8879ca commit 69c0cf5

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

src/Popover.vue

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,15 @@
1414
v-show="show"
1515
:transition="effect">
1616
<div class="arrow"></div>
17-
<h3 class="popover-title" v-show="title"> <slot name="title">{{title}} </slot> </h3>
17+
<h3 class="popover-title" v-show="title">
18+
<slot name="title">
19+
{{title}}
20+
</slot>
21+
</h3>
1822
<div class="popover-content">
19-
<slot name="content"> {{{content}}} </slot>
23+
<slot name="content">
24+
{{{content}}}
25+
</slot>
2026
</div>
2127
</div>
2228
</template>

src/Select.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@
2222
</li>
2323
</template>
2424
<slot v-else></slot>
25-
<div class="notify" v-show="showNotify" transition="fadein">Limit reached ({{limit}} items max).</div>
25+
<div class="notify" v-show="showNotify" transition="fadein">Limit reached ({{limit}} items max).
26+
</div>
2627
</ul>
2728
</div>
2829
</template>

0 commit comments

Comments
 (0)