25 lines
248 B
Vue
25 lines
248 B
Vue
|
<template>
|
||
|
<div class="bim-briefing main-page">
|
||
|
111
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
name: 'BimBriefing',
|
||
|
data() {
|
||
|
return {
|
||
|
|
||
|
}
|
||
|
},
|
||
|
methods: {
|
||
|
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style lang="less">
|
||
|
.bim-briefing{
|
||
|
|
||
|
}
|
||
|
</style>
|