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.
29 lines
506 B
29 lines
506 B
<!--
|
|
* @Author: wally
|
|
* @email: 18603454788@163.com
|
|
* @Date: 2021-01-13 17:18:13
|
|
* @LastEditors: wally
|
|
* @LastEditTime: 2021-01-13 18:03:42
|
|
-->
|
|
|
|
<template>
|
|
<div>
|
|
<!-- <left-nav style="float: left" /> -->
|
|
<div>
|
|
<router-view></router-view>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
// import LeftNav from './components/LeftNav.vue';
|
|
export default {
|
|
name: 'ServiceMarket',
|
|
// components: { LeftNav },
|
|
data() {
|
|
return {};
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style scoped lang="stylus"></style>
|
|
|