0👍
You can import the notification from ant design directly on .js files
eg
import { notification } from ‘ant-design-vue’;
notification.error({
message: ‘Error !’,
description: err.response.data.message,
class: ‘error’
})
Source:stackexchange.com