empty-tips-light.js 450 Bytes
Component({
	options: {
    styleIsolation: 'apply-shared' // 接受外部样式
  },
	properties: {
		// 这里定义了innerText属性,属性值可以在组件使用时指定
		innerText: {
			type: String,
			value: '这里空空如也~',
		},
		emptyVisible: {
			type: Boolean,
			value: false
		}
	},
	data: {
		// 这里是一些组件内部数据
		someData: {}
	},
	methods: {
		// 这里是一个自定义方法
		customMethod() {}
	}
})