Skip to content
Snippets Groups Projects

Draft: Resolve "Implement shared secret mechanism"

Closed Hangzhi Yu requested to merge 2-implement-shared-secret-mechanism into main
Files
28
<script>
export default {
name: "EffortTypeChip",
props: {
effortType: {
type: Object,
required: true,
},
},
}
</script>
<template>
<v-chip
outlined
:color="effortType.color"
v-bind="$attrs"
v-on="$listeners"
>
<v-icon left v-if="effortType.icon">
{{ effortType.icon }}
</v-icon>
{{ effortType.name }}
</v-chip>
</template>
<style scoped>
</style>
\ No newline at end of file
Loading