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 44154e7 commit a1cdff2Copy full SHA for a1cdff2
packages/StatusIndicator/src/main.vue
@@ -1,5 +1,5 @@
1
<template>
2
- <span class="status-indicator"></span>
+ <span class="status-indicator" :[status]="true" :pulse="pulse"></span>
3
</template>
4
<script>
5
export default {
@@ -18,10 +18,6 @@ export default {
18
default: false,
19
},
20
21
- mounted() {
22
- if (this.status !== '') this.$el[this.status] = '';
23
- if (this.pulse) this.$el.pulse = '';
24
- },
25
};
26
</script>
27
<style src="./status-indicator.css"></style>
0 commit comments