123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <template>
- <view
- class="box"
- :style="{
- height: height,
- lineHeight:height
- }"
- >
- <slot></slot>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {};
- },
- methods: {
- name() {},
- },
- props: {
- height: {
- type: String,
- default: "0rpx",
- },
- },
- };
- </script>
- <style lang="scss" scoped>
- .box{
- width: 100%;
- display:flex;
- justify-content: space-between;
- overflow: scroll;
- position: fixed;
- bottom: 0;
- font-size: 14px;
- background: #fff;
- }
- </style>
|