多媒体信息发布平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

27 lines
411 B

<template>
<div class="dashboard-container">
<div class="dashboard-editor-container"></div>
</div>
</template>
<script>
export default {
name: 'Dashboard',
components: {
},
data() {
return {
}
},
methods: {
}
}
</script>
<style rel="stylesheet/scss" lang="scss" scoped>
.dashboard-editor-container {
padding: 32px;
background-color: #f5f5f5;
position: relative;
}
</style>