移动端V1.0

This commit is contained in:
2025-07-16 15:34:34 +08:00
commit 194b0750fd
1083 changed files with 178295 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
export default {
props: {
}
}

View File

@@ -0,0 +1,31 @@
<template>
<view class="u-td">
</view>
</template>
<script>
import props from './props.js';
/**
* Td 表格中的单元格
* @description
* @tutorial url
* @property {String | Number}
* @event {Function}
* @example
*/
export default {
name: 'u-td',
mixins: [uni.$u.mpMixin, uni.$u.mixin,props],
data() {
return {
}
}
}
</script>
<style lang="scss" scoped>
@import "../../libs/css/components.scss";
</style>