代码拉取完成,页面将自动刷新
<template>
<div id="app">
<router-view />
<theme-picker />
</div>
</template>
<script>
import ThemePicker from "@/components/ThemePicker";
export default {
name: "App",
components: { ThemePicker },
metaInfo() {
return {
title: this.$store.state.settings.dynamicTitle && this.$store.state.settings.title,
titleTemplate: title => {
return title ? `${title} - ${process.env.VUE_APP_TITLE}` : process.env.VUE_APP_TITLE
}
}
},
mounted() {
}
};
</script>
<style scoped>
body {
touch-action: none;
}
#app .theme-picker {
display: none;
touch-action: none;
}
#app{
-moz-user-select:none; /* Firefox */
-webkit-user-select:none; /* WebKit内核 */
-ms-user-select:none; /* IE10及以后 */
-khtml-user-select:none; /* 早期浏览器 */
-o-user-select:none; /* Opera */
user-select:none; /* CSS3属性 */
touch-action: none;
}
</style>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。