
export class SizeBase {
	
	/**
	 * 字体尺寸
	 */
	normal = ref(0)
	
	/**
	 * 字体尺寸较小值
	 */
	small = ref(0)
	
	/**
	 * 字体尺寸较大值
	 */
	large = ref(0)
	
	constructor(fontSize: number) {
		this.normal.value = fontSize
		this.small.value = fontSize - 2
		this.large.value = fontSize + 2
	}

	/**
	 * 重置字体大小
	 */
	reset(fontSize: number) {
		this.normal.value = fontSize
		this.small.value = fontSize - 2
		this.large.value = fontSize + 2
	}
}
