Notifications for Vue

Do the notifications not work for Vue?

I noticed int he docs that the notifications are available in the F7 Core doc but not in the F7 Vue docs.

I initialized notifications and they appear/disappear within milliseconds. I have no control over them.
Am I doing something wrong?

See code on a view-main page.

openNotification() {

    var notification = f7.notification.create({

      icon: '<i class="icon demo-icon">7</i>',

      title: 'Incoming Call',

      titleRightText: 'now',

      subtitle: 'Incoming Call',

      text: 'Answer',

      closeTimeout: 6000,

      on: {

        close: function () {

          console.log('click');

        }

      },

    });

    notification.open();

    console.log("Notification Object:", notification)

  },

Thanks in advance.