Reload a page
How to reload a page using Velo?
import { to, url } from 'wix-location';
$w.onReady(function () {
$w('#button1').onClick(() => {
to(url);
});
});
How to reload a page using Velo?
import { to, url } from 'wix-location';
$w.onReady(function () {
$w('#button1').onClick(() => {
to(url);
});
});