32 lines
504 B
Vue
32 lines
504 B
Vue
<template>
|
|
<view class="item-line">
|
|
<view class="line" :style="{ width: width }"></view>
|
|
</view>
|
|
</template>
|
|
|
|
<script setup>
|
|
const props = defineProps({
|
|
width: {
|
|
type: String,
|
|
default: '100%'
|
|
}
|
|
})
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.item-line {
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 0;
|
|
height: 1px;
|
|
width: 100%;
|
|
|
|
.line {
|
|
width: 90%;
|
|
height: 1px;
|
|
background-color: #eeeeee;
|
|
margin: 0 auto;
|
|
}
|
|
}
|
|
</style>
|