This commit is contained in:
魏啾
2024-04-30 18:07:59 +08:00
parent b72c4d7af1
commit 56863dd624
1369 changed files with 156460 additions and 0 deletions

5
node_modules/uview-ui/components/u-td/props.js generated vendored Normal file
View File

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

31
node_modules/uview-ui/components/u-td/u-td.vue generated vendored Normal file
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>