1
0
Fork 0
dri/src/components/Toolbar.vue

14 lines
146 B
Vue
Raw Permalink Normal View History

2018-09-26 22:27:42 +08:00
<template>
2018-09-29 15:39:45 +08:00
<div>
<slot />
</div>
2018-09-26 22:27:42 +08:00
</template>
2018-09-29 15:39:45 +08:00
<style scoped>
div {
display: flex;
flex-direction: row;
justify-content: center;
}
</style>