我有一個vue.js
單個文件組件與一個按鈕,打開zurb foundation
模式與視頻。當我點擊按鈕重新加載頁面。它不會在開發工具控制檯或網絡部分顯示任何錯誤。這裏是我的代碼:在home.vue
基金會6模態不工作在vue.js組件
<a data-open="video" class="button warning" href="">WATCH VIDEO</a>
<div id="video" class="reveal" data-reveal>
<div class="lead">
<button class="close-button" data-close aria-label="Close modal" type="button">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="flex-video">
<iframe width="1280" height="720" :src="url" frameborder="0" allowfullscreen></iframe>
</div>
</div>
的url
是正確的,它甚至讓到YouTube的呼叫。
基礎文檔沒有href屬性。我介紹了你的代碼,並有一個頁面重新加載與href目前,採取href解決了我的重新加載。你試過了嗎? http://foundation.zurb.com/sites/docs/reveal.html – Ross
是的,我刪除了HREF,仍然沒有工作 –