You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
360 B
20 lines
360 B
|
1 year ago
|
<!--
|
||
|
|
@ 作者: 秦东
|
||
|
|
@ 时间: 2023-07-14 11:15:54
|
||
|
|
@ 备注:
|
||
|
|
-->
|
||
|
|
<script lang='ts' setup>
|
||
|
|
withDefaults(defineProps<{ content: string }>(), {})
|
||
|
|
</script>
|
||
|
|
<template>
|
||
|
|
<el-tooltip placement="top">
|
||
|
|
<template #content>
|
||
|
|
<span v-html="content"></span>
|
||
|
|
</template>
|
||
|
|
<i class="icon-help"></i>
|
||
|
|
</el-tooltip>
|
||
|
|
</template>
|
||
|
|
<style lang='scss' scoped>
|
||
|
|
|
||
|
|
</style>
|