Prompt

基本使用

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

{
    methods: {
        clickHandle(){
            this.$prompt('是否加入购物车?');
        }
    }
}

高级用法

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

{
    methods: {
        clickHandle(){
            this.$prompt('是否加入购物车?', {
                title: '系统提示',
                align: 'top',
                onOk(){
                    // 点击确定按钮后触发 
                }
            });
        }
    }
}

API

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