chore: fix build

pull/154/head
Anthony Fu 2022-11-27 15:05:17 +08:00
rodzic b8e68b106a
commit 342783eecc
1 zmienionych plików z 2 dodań i 1 usunięć

Wyświetl plik

@ -58,7 +58,8 @@ function createSuggestionRenderer(): SuggestionOptions['render'] {
})
},
onBeforeUpdate(props) {
// Use arrow function here because Nuxt will transform it incorrectly as Vue hook causing the build to fail
onBeforeUpdate: (props) => {
component.updateProps({ ...props, isPending: true })
},