update the master branch to the latest
This commit is contained in:
parent
67d534df27
commit
23a0ba9831
611 changed files with 122648 additions and 0 deletions
45
examples/routers/message.vue
Normal file
45
examples/routers/message.vue
Normal file
|
@ -0,0 +1,45 @@
|
|||
<template>
|
||||
<div>
|
||||
<Button type="primary" @click="info">Display info prompt</Button>
|
||||
<Button @click="success">Display success prompt</Button>
|
||||
<Button @click="warning">Display warning prompt</Button>
|
||||
<Button @click="error">Display error prompt</Button>
|
||||
<Button @click="loading">Display loading...</Button>
|
||||
<Button @click="closable">Display a closable message</Button>
|
||||
</div>
|
||||
</template>
|
||||
<script>
|
||||
export default {
|
||||
methods: {
|
||||
info () {
|
||||
this.$Message.info({
|
||||
content: '这是一条普通的提示',
|
||||
duration: 1000
|
||||
});
|
||||
},
|
||||
success () {
|
||||
this.$Message.success('This is a success tip');
|
||||
},
|
||||
warning () {
|
||||
this.$Message.warning('This is a warning tip');
|
||||
},
|
||||
error () {
|
||||
this.$Message.error('This is an error tip');
|
||||
},
|
||||
loading () {
|
||||
const msg = this.$Message.loading({
|
||||
content: 'Loading...',
|
||||
duration: 0
|
||||
});
|
||||
setTimeout(msg, 3000);
|
||||
},
|
||||
closable () {
|
||||
this.$Message.info({
|
||||
content: 'Tips for manual closing',
|
||||
duration: 1000,
|
||||
closable: true
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue