22 lines
417 B
Vue
22 lines
417 B
Vue
<template>
|
|
<div class="index-page main-page"></div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
selProject: null,
|
|
}
|
|
},
|
|
mounted() {
|
|
window.location.href = '#/detail'
|
|
this.$store.dispatch('ChangeNav', 1)
|
|
this.$bus.$on('projectChange', (prj) => {
|
|
this.selProject = prj
|
|
})
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style lang="less"></style> |