26 lines
346 B
Vue
26 lines
346 B
Vue
|
<!--
|
||
|
filename: Header.vue
|
||
|
author: liubin
|
||
|
date: 2023-12-05 14:30:46
|
||
|
description: 顶部标题
|
||
|
-->
|
||
|
|
||
|
<template></template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
name: "KilnHeader",
|
||
|
components: {},
|
||
|
props: {},
|
||
|
data() {
|
||
|
return {}
|
||
|
},
|
||
|
computed: {},
|
||
|
methods: {},
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style scoped lang="scss">
|
||
|
|
||
|
</style>
|