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.
19 lines
244 B
19 lines
244 B
<template>
|
|
<div>
|
|
{{ str }}
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'Introduce',
|
|
data() {
|
|
return {
|
|
str: '这是公司介绍界面',
|
|
list: [],
|
|
};
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style lang="stylus" scoped></style>
|
|
|