中航光电热表web
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
777 B

8 months ago
<template>
<basic-container>
<el-tabs
v-model="activeName"
class="demo-tabs"
@tab-click="handleClick"
>
2 months ago
<el-tab-pane label="项目" name="trialItem"></el-tab-pane>
<el-tab-pane label="标准" name="trialStandard"></el-tab-pane>
8 months ago
</el-tabs>
2 months ago
<trial-item v-if="activeName == 'trialItem'"></trial-item>
<trial-standard v-if="activeName == 'trialStandard'"></trial-standard>
8 months ago
</basic-container>
</template>
<script>
8 months ago
import trialItem from './components/trialItem.vue';
import trialStandard from './components/trialStandard.vue';
8 months ago
export default {
8 months ago
components:{
trialItem,
trialStandard
},
data(){
return {
activeName:'trialItem'
}
},
mounted(){
8 months ago
8 months ago
},
methods:{
}
8 months ago
}
</script>
<style>
</style>