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.
27 lines
514 B
27 lines
514 B
<template>
|
|
<div id="cultrue">文化</div>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {};
|
|
},
|
|
mounted() {
|
|
let cc = window.document.getElementById("app");
|
|
// 清除其他多余的classname
|
|
if (cc.className.indexOf("wh_bg") > -1) {
|
|
cc.className = "btgym";
|
|
} else {
|
|
cc.classList.add("wh_bg");
|
|
}
|
|
console.log(cc.classList)
|
|
},
|
|
methods: {},
|
|
};
|
|
</script>
|
|
<style>
|
|
.wh_bg {
|
|
clear: both;
|
|
background-image: url("../../assets/wh/whbg.jpg") !important;
|
|
}
|
|
</style>
|