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.
31 lines
532 B
31 lines
532 B
<template>
|
|
<div id="ty"></div>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {};
|
|
},
|
|
|
|
mounted() {
|
|
// console.log("ty vue");
|
|
// console.log(this.$route.meta);
|
|
// let bgurl = this.$route.meta;
|
|
// this.$emit("bgimg", bgurl);
|
|
},
|
|
beforeDestroy(){
|
|
// console.log("des index");
|
|
},
|
|
methods: {},
|
|
};
|
|
</script>
|
|
<style>
|
|
div.btgym::before{
|
|
background-image: none !important;
|
|
content: "";
|
|
}
|
|
div.btgym{
|
|
clear: both;
|
|
background-image:url('../../assets/ty/tybg.jpg') !important;
|
|
}
|
|
</style>
|
|
|