forked from TALL/check-work
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.
25 lines
347 B
25 lines
347 B
5 years ago
|
<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>
|