vue-msg
Version:
this is vue msg
32 lines • 868 B
HTML
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<script src="./node_modules/vue/dist/vue.js"></script>
<script src="./dist/vue-msg.js"></script>
<style type="text/css">
*{margin:0; padding:0;}
.btn{display:block; width:100px; height:40px; line-height:40px; margin:50px auto;}
</style>
</head>
<body>
<div id="app">
<button class="btn" @click="fnOpenMsg">点击</button>
</div>
<script>
new Vue({
el: '#app',
methods: {
fnOpenMsg () {
this.$msg('hello message !', {
timeout:3000
})
}
}
})
</script>
</body>
</html>