mirror of
https://gitee.com/xuliangzhan_admin/vxe-table.git
synced 2026-01-21 05:27:57 +08:00
15 lines
177 B
Vue
15 lines
177 B
Vue
<template>
|
|
<code ref="code">
|
|
<slot>{{ content }}</slot>
|
|
</code>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'PreCode',
|
|
props: {
|
|
content: String
|
|
}
|
|
}
|
|
</script>
|