镜像自地址
https://github.com/xming521/CTAI.git
已同步 2025-12-05 22:26:49 +00:00
36 行
564 B
Vue
36 行
564 B
Vue
<template>
|
|
|
|
<div id="app">
|
|
<app-header></app-header>
|
|
<app-content></app-content>
|
|
<app-footer></app-footer>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import Header from './components/Header'
|
|
import Footer from './components/Footer'
|
|
import Content from './components/Content'
|
|
export default {
|
|
name: "肿瘤辅助诊断系统",
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
components:{
|
|
"app-header":Header,
|
|
"app-footer":Footer,
|
|
"app-content":Content
|
|
},
|
|
methods: {
|
|
|
|
},
|
|
|
|
};
|
|
</script>
|
|
|
|
<style scope="this api replaced by slot-scope in 2.5.0+">
|
|
|
|
</style>
|