1
0
mirror of https://github.com/sahadev/vue-component-creater-ui.git synced 2025-12-16 15:34:17 +08:00

集成Antd Button

This commit is contained in:
shangbin
2021-12-02 16:49:57 +08:00
parent 1561d0a811
commit f7b3835b7b
11 changed files with 167 additions and 11 deletions

View File

@@ -0,0 +1,47 @@
<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>