mirror of
https://github.com/simon987/sist2.git
synced 2025-04-22 11:46:46 +00:00
21 lines
316 B
Vue
21 lines
316 B
Vue
<template>
|
|
<b-badge variant="secondary" :pill="pill">{{ text }}</b-badge>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import Vue from "vue";
|
|
|
|
export default Vue.extend({
|
|
props: {
|
|
text: String,
|
|
pill: Boolean
|
|
}
|
|
})
|
|
</script>
|
|
|
|
<style scoped>
|
|
.badge-pill {
|
|
padding: 0.3em .4em 0.1em;
|
|
border-radius: 6rem;
|
|
}
|
|
</style> |