mirror of
https://github.com/XiaoDaiGua-Ray/ray-template.git
synced 2025-04-06 03:57:49 +08:00
feat: v4.2.3发布
This commit is contained in:
parent
d698db587f
commit
1f2ae05ca4
@ -1,5 +1,11 @@
|
|||||||
# CHANGE LOG
|
# CHANGE LOG
|
||||||
|
|
||||||
|
## 4.2.3
|
||||||
|
|
||||||
|
### Fixes
|
||||||
|
|
||||||
|
- 修复 RQRCode 组件不能正确的监听 text 属性变化而重新渲染问题
|
||||||
|
|
||||||
## 4.2.2
|
## 4.2.2
|
||||||
|
|
||||||
重构了 RTable 组件。优化表格渲染逻辑,解决旧组件重复渲染问题。并且允许自定义拓展工具栏。
|
重构了 RTable 组件。优化表格渲染逻辑,解决旧组件重复渲染问题。并且允许自定义拓展工具栏。
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "ray-template",
|
"name": "ray-template",
|
||||||
"private": false,
|
"private": false,
|
||||||
"version": "4.2.2",
|
"version": "4.2.3",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=16.0.0",
|
"node": ">=16.0.0",
|
||||||
|
@ -20,6 +20,7 @@ import { isValueType, downloadAnyFile } from '@use-utils/hook'
|
|||||||
import { call } from '@/utils/vue/index'
|
import { call } from '@/utils/vue/index'
|
||||||
|
|
||||||
import type { QRCodeRenderResponse, GIFBuffer } from './type'
|
import type { QRCodeRenderResponse, GIFBuffer } from './type'
|
||||||
|
import type { WatchStopHandle } from 'vue'
|
||||||
|
|
||||||
const readGIFAsArrayBuffer = (url: string): Promise<GIFBuffer> => {
|
const readGIFAsArrayBuffer = (url: string): Promise<GIFBuffer> => {
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
@ -59,6 +60,7 @@ export default defineComponent({
|
|||||||
opacitySpinning: '0.1',
|
opacitySpinning: '0.1',
|
||||||
}
|
}
|
||||||
let gifBuffer: GIFBuffer
|
let gifBuffer: GIFBuffer
|
||||||
|
let watchCallback!: WatchStopHandle
|
||||||
|
|
||||||
const getGIFImageByURL = async () => {
|
const getGIFImageByURL = async () => {
|
||||||
const { gifBackgroundURL } = props
|
const { gifBackgroundURL } = props
|
||||||
@ -123,9 +125,10 @@ export default defineComponent({
|
|||||||
|
|
||||||
watchEffect(() => {
|
watchEffect(() => {
|
||||||
if (props.watchText) {
|
if (props.watchText) {
|
||||||
nextTick().then(() => {
|
watchCallback = watch(
|
||||||
renderQRCode()
|
() => props.text,
|
||||||
})
|
() => renderQRCode(),
|
||||||
|
)
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
@ -137,6 +140,9 @@ export default defineComponent({
|
|||||||
await getGIFImageByURL()
|
await getGIFImageByURL()
|
||||||
renderQRCode()
|
renderQRCode()
|
||||||
})
|
})
|
||||||
|
onBeforeUnmount(() => {
|
||||||
|
watchCallback && watchCallback()
|
||||||
|
})
|
||||||
|
|
||||||
return {
|
return {
|
||||||
qrcodeURL,
|
qrcodeURL,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user