mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 01:11:25 +08:00
8210a307e3
Co-authored-by: 三咲智子 <sxzz@sxzz.moe>
28 lines
461 B
Vue
28 lines
461 B
Vue
<script setup lang="ts">
|
|
import { computed } from 'vue'
|
|
|
|
const props = defineProps({
|
|
source: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
})
|
|
|
|
const decoded = computed(() => {
|
|
return decodeURIComponent(props.source)
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<div class="example-source-wrapper">
|
|
<div class="example-source language-vue" v-html="decoded"></div>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped lang="scss">
|
|
.language-vue {
|
|
margin: 0;
|
|
border-radius: 0;
|
|
}
|
|
</style>
|