forked from verdnatura/salix-front
fix(VnPaginate): not start without data
This commit is contained in:
parent
139861f6cf
commit
f2b132db79
|
@ -116,6 +116,7 @@ watch(
|
||||||
watch(
|
watch(
|
||||||
() => store.data,
|
() => store.data,
|
||||||
(data) => {
|
(data) => {
|
||||||
|
if (!mounted.value) return;
|
||||||
emit('onChange', data);
|
emit('onChange', data);
|
||||||
},
|
},
|
||||||
{ immediate: true }
|
{ immediate: true }
|
||||||
|
|
|
@ -69,7 +69,7 @@ function setNotifications(data) {
|
||||||
:default-reset="false"
|
:default-reset="false"
|
||||||
:default-remove="false"
|
:default-remove="false"
|
||||||
:default-save="false"
|
:default-save="false"
|
||||||
@on-fetch="setNotifications"
|
@on-fetch="(data) => data && setNotifications(data)"
|
||||||
search-url="notifications"
|
search-url="notifications"
|
||||||
>
|
>
|
||||||
<template #body>
|
<template #body>
|
||||||
|
|
Loading…
Reference in New Issue