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.
28 lines
356 B
28 lines
356 B
5 years ago
|
<template>
|
||
|
<div class="friend">
|
||
|
<div class="friend-content">
|
||
|
{{ str }}
|
||
|
</div>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
data() {
|
||
|
return { str: '友情链接' };
|
||
|
},
|
||
|
};
|
||
|
</script>
|
||
|
|
||
|
<style lang="stylus" scoped>
|
||
|
.friend {
|
||
|
line-height: 64px;
|
||
|
background: #ffffff;
|
||
|
}
|
||
|
|
||
|
.friend-content {
|
||
|
width: 1260px;
|
||
|
margin: auto;
|
||
|
}
|
||
|
</style>
|