u-td.vue 457 Bytes
Newer Older
潘永坪's avatar
潘永坪 committed
1
<template>
潘永坪's avatar
潘永坪 committed
2 3
	<view class="u-td">
		
潘永坪's avatar
潘永坪 committed
4 5 6 7
	</view>
</template>

<script>
潘永坪's avatar
潘永坪 committed
8 9 10 11 12 13 14 15
	import props from './props.js';
	/** 
	 * Td 表格中的单元格
	 * @description 
	 * @tutorial url
	 * @property {String | Number} 
	 * @event {Function}
	 * @example
潘永坪's avatar
潘永坪 committed
16 17
	 */
	export default {
潘永坪's avatar
潘永坪 committed
18 19
		name: 'u-td',
		mixins: [uni.$u.mpMixin, uni.$u.mixin,props],
潘永坪's avatar
潘永坪 committed
20 21
		data() {
			return {
潘永坪's avatar
潘永坪 committed
22
				
潘永坪's avatar
潘永坪 committed
23 24
			}
		}
潘永坪's avatar
潘永坪 committed
25
	}
潘永坪's avatar
潘永坪 committed
26 27 28
</script>

<style lang="scss" scoped>
潘永坪's avatar
潘永坪 committed
29 30
	@import "../../libs/css/components.scss";
	
潘永坪's avatar
潘永坪 committed
31
</style>