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

23 lines
418 B
Vue

<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;
});
this.$router.push("/detail");
}
}
</script>
<style lang="less"></style>