iT邦幫忙

2017 iT 邦幫忙鐵人賽
DAY 16
1
Modern Web

Vue.JS且戰且飛系列 第 28

Vue.JS且戰且走(二十八)

  • 分享至 

  • xImage
  •  

彈跳視窗

jsfiddle


28.php

<html>
<head>
    <meta charset="UTF-8">
    <title>彈跳視窗</title>
</head>
<body>
<!-- 彈跳區域 CSS自行寫 -->
<template id="modal-template">
    <div>
        <div>eagle flying</div>
        <button class="modal-default-button" @click="$emit('close')">
            OK
        </button>
    </div>
</template>

<div id="show">
    <button id="show-modal" @click="show = true">Show Modal</button>
    <modal v-if="show" @close="show = false"></modal>
</div>
</body>
<script src="vue.js"></script>
<script>

    Vue.component('modal', {
        template: '#modal-template'
    })

    new Vue({
        el: '#show',
        data: {
            show: false
        }
    })
</script>
</html>


上一篇
Vue.JS且戰且飛(二十七)
下一篇
Vue.JS且戰且走(二十九)
系列文
Vue.JS且戰且飛30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

1 則留言

我要留言

立即登入留言