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.
24 lines
347 B
24 lines
347 B
<template>
|
|
<div>
|
|
<h-nav />
|
|
{{ str }}
|
|
{{ str }}
|
|
{{ str }}
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import HNav from './../components/HNav.vue';
|
|
export default {
|
|
name: 'Service',
|
|
components: { HNav },
|
|
data() {
|
|
return {
|
|
str: '这是服务界面',
|
|
list: [],
|
|
};
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style lang="stylus" scoped></style>
|
|
|