| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <template>
- <div class="bot-float-button plr30">
- <van-button
- v-bind="$attrs"
- :color="color"
- round
- type="primary"
- block>
- <slot></slot>
- </van-button>
- </div>
- </template>
- <script>
- export default {
- name: "BotFloatButton",
- props: {
- color: {
- type: String,
- default: "#17b3ec"
- }
- },
- components: {
-
- },
- watch:{
-
- },
- data(){
- return {
-
- }
- },
- mounted() {
-
- },
- methods: {
-
- },
- };
- </script>
- <style lang="scss" scoped>
- .bot-float-button{
- position: fixed;
- bottom: 20px;
- width: 100%;
- }
- </style>
|