feat: heroku build

This commit is contained in:
Alexandr
2022-07-23 12:48:15 +03:00
parent 2f750f804f
commit 0d7859c92f
6 changed files with 13 additions and 43 deletions

View File

@@ -5,36 +5,4 @@
</div>
</template>
<script lang="ts" setup>
import { computed, toRefs } from 'vue'
import type { PropType } from 'vue'
const props = defineProps({
arrow: {
type: Boolean,
default: true,
},
children: {
type: Array,
default() {
return []
},
},
duration: {
type: Number, // animation = duration-300
default: 300,
},
placement: {
type: String, // top | right | bottom | left | {top/right/bottom/left}-{start/end}
default: 'auto',
},
type: {
type: String, // 'dark' | 'light' | 'auto'
default: 'dark',
},
trigger: {
type: String, // 'hover' | 'click'
default: 'hover',
},
})
</script>