add nova
This commit is contained in:
29
nova/resources/js/components/TooltipContent.vue
Normal file
29
nova/resources/js/components/TooltipContent.vue
Normal file
@@ -0,0 +1,29 @@
|
||||
<template>
|
||||
<div v-bind="defaultAttributes">
|
||||
<slot />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
const defaultClasses = 'px-3 py-2 text-sm leading-normal'
|
||||
|
||||
export default {
|
||||
props: {
|
||||
maxWidth: {
|
||||
default: 'auto',
|
||||
},
|
||||
},
|
||||
|
||||
computed: {
|
||||
defaultAttributes() {
|
||||
return {
|
||||
class: this.$attrs.class || defaultClasses,
|
||||
style: {
|
||||
maxWidth:
|
||||
this.maxWidth === 'auto' ? this.maxWidth : `${this.maxWidth}px`,
|
||||
},
|
||||
}
|
||||
},
|
||||
},
|
||||
}
|
||||
</script>
|
||||
Reference in New Issue
Block a user