Files
vxe-table/examples/components/PreCode.vue
2020-09-25 19:00:34 +08:00

21 lines
288 B
Vue

<template>
<code ref="code">
<slot>{{ content }}</slot>
</code>
</template>
<script>
import hljs from 'highlight.js'
export default {
name: 'PreCode',
props: {
content: String
},
mounted () {
const block = this.$el
hljs.highlightBlock(block)
}
}
</script>