vue.js $Alert 全局通知组件

常规组件使用方法



$Alert 的调用

export default {
    methods: {
        showMessage () {
            this.$Alert({
                content: '通知内容',
                duration: 3
            });
        }
    }
}

你可能感兴趣的:(vue.js $Alert 全局通知组件)