Skip to content

Commit

Permalink
chore: rename component (#160)
Browse files Browse the repository at this point in the history
  • Loading branch information
uyarn authored Aug 10, 2022
1 parent 5abca73 commit add3c36
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions src/pages/dashboard/base/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,28 +7,27 @@
<!-- 列表排名 -->
<rank-list class="row-container" />
<!-- 出入库概览 -->
<over-view class="row-container" />
<output-overview class="row-container" />
</div>
</template>
<script>
import TopPanel from './components/top-panel.vue';
import MiddleChart from './components/middle-chart.vue';
import RankList from './components/rank-list.vue';
import OverView from './components/overview.vue';
import TopPanel from './components/TopPanel.vue';
import MiddleChart from './components/MiddleChart.vue';
import RankList from './components/RankList.vue';
import OutputOverview from './components/OutputOverview.vue';
export default {
name: 'DashboardBase',
components: {
TopPanel,
MiddleChart,
RankList,
OverView,
OutputOverview,
},
};
</script>
<style scoped>
.row-container {
margin-bottom: 16px;
}
</style>

0 comments on commit add3c36

Please sign in to comment.