dataease-dm/frontend/src/views/system/CreateBox.vue
fit2cloud-chenyw f04809c638 feat: 新前端
2021-03-03 15:06:52 +08:00

27 lines
488 B
Vue

<template>
<span class="box">
<el-tooltip class="item" effect="dark" :content="tips" placement="right">
<el-button type="primary" size="mini" circle @click="exec()">
<font-awesome-icon :icon="['fas', 'plus']" />
</el-button>
</el-tooltip>
</span>
</template>
<script>
export default {
name: 'MsCreateBox',
props: {
tips: String,
exec: Function
}
}
</script>
<style scoped>
.box {
margin-left: 5px;
margin-right: 5px;
}
</style>