Files
ss-crm-manage-web/src/views/Basic/WxRobot/index.vue

20 lines
446 B
Vue
Raw Normal View History

2024-04-28 16:20:45 +08:00
<template>
<el-tabs v-model="tabIndex" type="border-card">
2024-12-03 17:14:00 +08:00
<!-- <el-tab-pane label="微信消息记录" :name="0">
<Record />
</el-tab-pane> -->
<el-tab-pane label="消息配置" :name="1">
<Setting />
2024-04-28 16:20:45 +08:00
</el-tab-pane>
</el-tabs>
</template>
2024-12-03 17:14:00 +08:00
<script setup name="WXBoot">
// import Record from './Record.vue'
import Setting from './Setting.vue'
2024-04-28 16:20:45 +08:00
2024-12-03 17:14:00 +08:00
const tabIndex = ref(1)
2024-04-28 16:20:45 +08:00
</script>
<style lang="scss" scoped></style>