YZProjectCloud/yanzhu-bigscreen/src/views/index.vue

22 lines
417 B
Vue
Raw Normal View History

2024-11-27 23:42:39 +08:00
<template>
2025-04-15 00:53:18 +08:00
<div class="index-page main-page"></div>
2024-11-27 23:42:39 +08:00
</template>
<script>
export default {
data() {
return {
2025-04-15 00:53:18 +08:00
selProject: null,
2024-11-27 23:42:39 +08:00
}
},
mounted() {
2025-04-15 00:53:18 +08:00
window.location.href = '#/detail'
this.$store.dispatch('ChangeNav', 1)
this.$bus.$on('projectChange', (prj) => {
this.selProject = prj
})
},
2024-11-27 23:42:39 +08:00
}
</script>
<style lang="less"></style>