de/frontend/src/components/widget/DeWidget/SearchButton.vue
2022-07-24 23:00:36 +08:00

29 lines
400 B
Vue

<template>
<div>
<el-button type="primary" @click="execute" plain>{{text}}</el-button>
</div>
</template>
<script>
export default {
name: 'SearchButton',
props: {
},
data() {
return {
text: '查询'
}
},
methods: {
execute() {
console.log('开始查询。。。')
}
}
}
</script>
<style lang="scss" scoped>
</style>