34 lines
503 B
Vue
34 lines
503 B
Vue
<template>
|
|
<home-header></home-header>
|
|
|
|
</template>
|
|
|
|
<script>
|
|
import HomeHeader from './childComps/HomeHeader.vue'
|
|
export default {
|
|
components:{
|
|
HomeHeader,
|
|
},
|
|
data() {
|
|
return {
|
|
hotSearchWord:'热门关键词',
|
|
headerBgList:["https://alifei01.cfp.cn/creative/vcg/800/new/VCG41175510742.jpg"]
|
|
}
|
|
},
|
|
onLoad() {
|
|
|
|
},
|
|
methods: {
|
|
// 头部区域
|
|
//获取热点搜索词、背景URL
|
|
getHeaderAreaURL() {
|
|
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
|
|
|
|
</style> |