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.
22 lines
404 B
22 lines
404 B
1 year ago
|
<template>
|
||
|
<div>
|
||
|
<el-tabs v-model="curTab">
|
||
|
<el-tab-pane label="产品详情"
|
||
|
name="tab1">
|
||
|
<info />
|
||
|
</el-tab-pane>
|
||
|
</el-tabs>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script setup lang="ts">
|
||
|
import { ref } from 'vue';
|
||
|
import Info from './Info.vue';
|
||
|
|
||
|
const curTab = ref<string>('tab1');
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss" scoped>
|
||
|
@import url(../../../styles/form.scss);
|
||
|
</style>
|