You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
518 B
27 lines
518 B
<template>
|
|
<view>
|
|
<view class="upload mx-4">
|
|
<u-icon name="plus" color="#ffffff" size="48" class="flex justify-center h-10 w-10 bg-blue-500 rounded-full"></u-icon>
|
|
<u-input type="textarea" placeholder="" class="inputUpload" />
|
|
</view>
|
|
</view>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {};
|
|
},
|
|
methods: {},
|
|
};
|
|
</script>
|
|
<style lang="scss">
|
|
.upload {
|
|
display: flex;
|
|
flex-direction: row-reverse;
|
|
}
|
|
.inputUpload {
|
|
position: relative;
|
|
left: 85%;
|
|
right: 5%;
|
|
}
|
|
</style>
|
|
|