17 lines
213 B
Vue
17 lines
213 B
Vue
<template>
|
|
<section></section>
|
|
</template>
|
|
<script>
|
|
import Highlight from './highlight';
|
|
|
|
export default {
|
|
components: {
|
|
Highlight,
|
|
},
|
|
props: {
|
|
codes: {
|
|
type: Object,
|
|
},
|
|
},
|
|
};
|
|
</script> |