1
0
mirror of https://github.com/sahadev/vue-component-creater-ui.git synced 2025-12-15 23:14:18 +08:00
Files
vue-component-creater-ui/src/rawComponents/antd/button.vue
2021-12-02 16:49:57 +08:00

48 lines
1.2 KiB
Vue

<template lc_id="YNC0Scb/Nu">
<div lc_id="pN7LcslOJR">
<div lc_id="jr3zjZhDqz">
<div class="demonstration-antd" lc_id="fRuphkeIKC">Button 按钮</div>
<div lc_id="k+t156NFRt">
<a-button type="primary" lc-mark lc_id="NT+hTWS70C">Primary</a-button>
<a-button lc-mark lc_id="H0OdlntRuU">Default</a-button>
<a-button type="dashed" lc-mark lc_id="HfCkDXAjeL">Dashed</a-button>
<a-button type="danger" lc-mark lc_id="E40JXI4Cy0">Danger</a-button>
<a-config-provider :auto-insert-space-in-button="false" lc-mark lc_id="oyVejV1NjF">
<a-button type="primary" lc_id="2FflgjN2k0">按钮</a-button>
</a-config-provider>
<a-button type="primary" lc-mark lc_id="tyIuitGX1x">按钮</a-button>
<a-button type="link" lc-mark lc_id="4heYqBMoxv">Link</a-button>
</div>
</div>
</div>
</template>
<script>
export default {
props: [],
components: {},
data() {
return {}
},
watch: {},
computed: {},
beforeCreate() { },
created() { },
beforeMount() { },
mounted() { },
beforeUpdate() { },
updated() { },
destoryed() { },
methods: {
request() { },
onButtonClick() { },
},
fillter: {},
}
</script>
<style scoped>
.container {
}
</style>