<template>
<div class="customer">
<!-- 客户信息 -->
<router-view></router-view>
</div>
</template>
<script>
export default {
data() {
return {}
},
computed: {},
watch: {},
methods: {
openNotificationWithIcon(type) {
this.$msg[type]({
message: 'Notification Title',
description:
'This is the content of the notification. This is the content of the notification. This is the content of the notification.'
})
}
}
}
</script>
<style lang="less" scoped>
.customer {
.pa(30, 36, 10, 39);
background-color: #fff;
box-sizing: border-box;
}
</style>
-
朱彩云 authoreddf6faaec