Files
dvcp_v2_wxcp_app/components/AiDict/AiDict.vue

19 lines
299 B
Vue
Raw Normal View History

2022-05-20 13:57:06 +08:00
<template>
<span class="AiDict" :style="{color:$dict.getColor(dict,value)}" v-text="$dict.getLabel(dict,value)"/>
</template>
<script>
export default {
name: "AiDict",
props: {
value: {default: ""},
dict: {default: ""}
}
}
</script>
<style lang="scss" scoped>
.AiDict {
}
</style>