JSFiddle: add missing <style> and <script>

This commit is contained in:
Leopoldthecoder
2016-11-14 18:10:52 +08:00
committed by cinwell.li
parent fa334a09d4
commit 353dab8c55
30 changed files with 1074 additions and 97 deletions

View File

@@ -36,6 +36,13 @@
</el-dropdown-item>
</el-dropdown-menu>
</el-dropdown>
<style>
.item {
margin-top: 10px;
margin-right: 40px;
}
</style>
```
:::
@@ -51,6 +58,13 @@
<el-badge :value="100" :max="10" class="item">
<el-button size="small">回复</el-button>
</el-badge>
<style>
.item {
margin-top: 10px;
margin-right: 40px;
}
</style>
```
:::
@@ -66,6 +80,13 @@
<el-badge value="hot" class="item">
<el-button size="small">回复</el-button>
</el-badge>
<style>
.item {
margin-top: 10px;
margin-right: 40px;
}
</style>
```
:::
@@ -79,6 +100,13 @@
<el-badge is-dot class="item">
<el-button class="share-button" icon="share" type="primary"></el-button>
</el-badge>
<style>
.item {
margin-top: 10px;
margin-right: 40px;
}
</style>
```
:::