20 lines
446 B
Vue
20 lines
446 B
Vue
<template>
|
|
<el-tabs v-model="tabIndex" type="border-card">
|
|
<!-- <el-tab-pane label="微信消息记录" :name="0">
|
|
<Record />
|
|
</el-tab-pane> -->
|
|
<el-tab-pane label="消息配置" :name="1">
|
|
<Setting />
|
|
</el-tab-pane>
|
|
</el-tabs>
|
|
</template>
|
|
|
|
<script setup name="WXBoot">
|
|
// import Record from './Record.vue'
|
|
import Setting from './Setting.vue'
|
|
|
|
const tabIndex = ref(1)
|
|
</script>
|
|
|
|
<style lang="scss" scoped></style>
|