mirror of
https://github.com/pterodactyl/documentation.git
synced 2025-12-10 00:09:39 -06:00
25 lines
586 B
Vue
25 lines
586 B
Vue
<script>
|
|
export default {
|
|
functional: true,
|
|
props: {
|
|
type: {
|
|
type: String,
|
|
default: 'tip'
|
|
},
|
|
text: String,
|
|
vertical: {
|
|
type: String,
|
|
default: 'top'
|
|
}
|
|
},
|
|
render (h, { props, slots }) {
|
|
return h('span', {
|
|
class: ['badge', props.type],
|
|
style: {
|
|
verticalAlign: props.vertical
|
|
}
|
|
}, props.text || slots().default)
|
|
}
|
|
}
|
|
</script>
|