feat: 引入uView Plus组件库,新增部分静态页面

This commit is contained in:
admin
2026-01-17 16:55:19 +08:00
parent 34c63780a8
commit 849647d3c9
562 changed files with 73370 additions and 121 deletions

View File

@@ -0,0 +1,36 @@
<style scoped lang="scss">
.u-title {
.u-title-prefix {
width: 4px;
height: 18px;
border-radius: 2px;
background: $u-primary;
margin-right: 12px;
margin-right :10px;
}
}
</style>
<template>
<view class="u-title u-flex-row u-flex-y-center">
<slot name="prefix">
<view class="u-title-prefix">
</view>
</slot>
<slot></slot>
</view>
</template>
<script>
export default {
name: 'u-title',
props: {
},
data() {
return {
}
},
created: function () {
},
methods: {
}
}
</script>