How to use the kpc-vue/components/message.error function in kpc-vue

To help you get started, we’ve selected a few kpc-vue examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github ksc-fe / kpc / components / transfer / demos / customList / index.vue View on Github external
onAdd() {
            const users = this.checkedUsers;
            const room = this.checkedRooms[0];
        
            if (users.length > 2) {
                return Message.error('当前房间最多容纳两人');
            }
        
            users.forEach(user => {
                user.room = room;
                room.users.push(user);
            });
        
            this.checkedUsers = [];
            this.checkedRooms = [];
        },
        onRemove() {
github ksc-fe / kpc / components / dialog / demos / events / index.vue View on Github external
onCancel() {
            Message.error('You clicked cancel button.');
        },
    },
github ksc-fe / kpc / components / editable / demos / validate / index.vue View on Github external
_showErrorTip(c, value) {
            Message.error('Please enter digits.');
        },
        _onChange(c, newValue, oldValue) {