Alert

基本使用

在任意组件内部可通过this.$alert方法调用

{
    methods: {
        clickHandle(){
            this.$alert('hello world');
        }
    }
}

高级用法

通过第二个参数, 可以进一步定制alert.

{
    methods: {
        clickHandle(){
            this.$alert('hello world', {
                title: '系统提示',
                align: 'top',
                onOk(){
                    // 点击确定按钮后触发 
                }
            });
        }
    }
}

API

参数说明类型默认值可选值是否必选
content标题String-
options选项Object{}-
展开options(第二个参数)
参数说明类型默认值可选值是否必选
title标题String-
align对齐方式Stringbottomtop bottom center
okText确定按钮文字String-
onOk点击确定按钮后触发Function-
中国移动
19:01:30
86%