forked from github/dataease
27 lines
492 B
Vue
27 lines
492 B
Vue
|
<template>
|
||
|
<span class="box">
|
||
|
<el-tooltip class="item" effect="dark" :content="tips" placement="right">
|
||
|
<el-button @click="exec()" type="primary" size="mini" circle>
|
||
|
<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>
|