#ElementUI [[Composition API]]を使ったNotificationの使い方。`Notification`をインポートすればいい。 ```ts import { Notification } from 'element-ui'; ``` あとは`this.$notify`の代わりに`Notification`を使う。 ```ts Notification({ title: "hoge", message: "huga" }) ```