榆钱落尽槿花稀 01448b7113 feat: 添加多个静态图片资源及配置文件
新增了多个静态图片资源文件,包括01.png、02.png等,并添加了相关的配置文件和组件,如vue.config.js、package.json等。同时引入了Tuniao UI库,并配置了相关的依赖和设置,以支持项目的开发和构建。
2025-05-09 17:07:24 +08:00

40 lines
595 B
Plaintext

<template>
<view class="tn-time-line-class tn-time-line">
<slot></slot>
</view>
</template>
<script>
export default {
name: 'tn-time-line',
props: {
},
data() {
return {
}
}
}
</script>
<style lang="scss" scoped>
.tn-time-line {
padding-left: 40rpx;
position: relative;
&::before {
content: '';
position: absolute;
width: 1px;
left: 0;
top: 12rpx;
bottom: 0;
border-left: 1px solid #AAAAAA;
transform-origin: 0 0;
transform: scaleX(0.5);
}
}
</style>