first commit

This commit is contained in:
2025-12-29 14:59:44 +08:00
commit 10c3fbb0d7
5315 changed files with 795443 additions and 0 deletions

7
node_modules/uview-plus/components/u-tr/props.js generated vendored Normal file
View File

@@ -0,0 +1,7 @@
import { defineMixin } from '../../libs/vue'
import defProps from '../../libs/config/props.js'
export const props = defineMixin({
props: {
}
})

34
node_modules/uview-plus/components/u-tr/u-tr.vue generated vendored Normal file
View File

@@ -0,0 +1,34 @@
<template>
<view class="u-tr">
<slot></slot>
</view>
</template>
<script>
import { props } from './props';
import { mpMixin } from '../../libs/mixin/mpMixin';
import { mixin } from '../../libs/mixin/mixin';
/**
* Tr
* @description
* @tutorial url
* @property {String}
* @event {Function}
* @example
*/
export default {
name: 'u-tr',
mixins: [mpMixin, mixin, props],
data() {
return {
}
}
}
</script>
<style lang="scss" scoped>
.u-tr {
@include flex;
}
</style>