Default / 默认 · 8月 31, 2021

“framework7 vue Notification使用”

内容纲要

普通framework7
myApp.addNotification({ message: ‘Nice yellow button’, button: { text: ‘Click me’, color: ‘yellow’ } });

framework7 vue
  this.$f7.addNotification({
        message: ‘Nice yellow button’,
        button: {
            text: ‘Click me’,
            color: ‘yellow’
        }
    });

more https://framework7.io/docs/notifications.html

%d 博主赞过: