How to use the kpc-vue/components/message.info 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 / message / demos / duration / index.vue View on Github external
showMessage2() {
            Message.info('stick message', 0);
        },
    },
github ksc-fe / kpc / components / message / demos / duration / index.vue View on Github external
showMessage1() {
            Message.info('close after 10s', 10000);
        },
        showMessage2() {
github ksc-fe / kpc / components / pagination / demos / current / index.vue View on Github external
_fetch2({current, limit}) {
            Message.info(`current page: ${current}, limit: ${limit}`);
        },
    },