copyLink = (url) => {
navigator.clipboard.writeText(url).then(() => {
$alert.notify({
type: 'success',
message: 'Link copied to clipboard.',
toast: true,
});
});
};