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.
21 lines
387 B
21 lines
387 B
5 years ago
|
<template>
|
||
|
<div>
|
||
|
<sen-nav />
|
||
|
<div style="width: 100%; height: 50px; background: skyblue; color: #000">搜索条</div>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import SenNav from './components/SenNav.vue';
|
||
|
export default {
|
||
|
name: 'Share',
|
||
|
components: { SenNav },
|
||
|
data() {
|
||
|
return {
|
||
|
str: '这是科技资源开放共享服务平台',
|
||
|
list: [],
|
||
|
};
|
||
|
},
|
||
|
};
|
||
|
</script>
|