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

22 lines
380 B
Vue
Raw Normal View History

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