[Vuejs]-Vue.js Toast is not defined(while using mint-ui)

0👍

You need to import Toast from Mint UI.
change import MintUi from 'mint-ui'; to below.

import MintUi, { Toast } from 'mint-ui';

Leave a comment