mirror of
https://github.com/Kuingsmile/PicList.git
synced 2025-03-14 08:48:13 -04:00
9 lines
225 B
TypeScript
9 lines
225 B
TypeScript
![]() |
import { Component, Vue } from 'vue-property-decorator'
|
||
|
import { ipcRenderer } from 'electron'
|
||
|
@Component
|
||
|
export default class extends Vue {
|
||
|
letPicGoSaveData (data: IObj) {
|
||
|
ipcRenderer.send('picgoSaveData', data)
|
||
|
}
|
||
|
}
|