Files
juipvue/src/components/home/blank.vue
wanyongkang 3193537726 初始提交
2020-10-04 10:30:08 +08:00

49 lines
697 B
Vue

<template>
<div id="app">
</div>
</template>
<script>
let that;
export default {
name: "home",
components: {
},
data() {
return {
// handelshow: false,
activeName: "",
selsecondindex: "",
menudata: [],
Navigation: {
secList: [],
show: false,
firsturl: "/",
loadMain: false
},
showGuide: false
};
},
computed: {
version: function() {
return this.$store.state.version;
}
},
created() {
},
methods: {
}
};
</script>
<style lang="less" scoped>
#app {
width: 100%;
height: 100%;
min-width: 1400px;
}
</style>