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.

32 lines
758 B

<template>
<div class="site-personal-wrap min-flex-right">
<div class="siteMessage flex-common" id="siteMessage4">
<h3>搜索引擎优化SEO <span>通过SEO设置可以免费获得流量提高网站在搜索引擎中的排名</span></h3>
</div>
</div>
</template>
<script>
// import request from "./utils/request";
import { mapState } from 'vuex';
import store from '../store';
export default {
name: 'Sidebar',
props: {},
data() {
return {
}
},
mounted() {
store.commit('SET_PAGETITLE', '移动端设置');
},
computed: {
...mapState(['pageTitle']) // 从Vuex映射showSidebar状态到组件的计算属性中
},
methods:{
}
}
</script>