popup component demo

This commit is contained in:
cookfront
2017-03-09 20:29:41 +08:00
parent da86a0c214
commit 2fe99d031a
10 changed files with 219 additions and 22 deletions

View File

@@ -0,0 +1,19 @@
import MobilePopup from 'components/mobile-popup.vue';
export default {
components: {
MobilePopup
},
computed: {
mobileUrl() {
return '/examples.html' + location.hash;
}
},
data() {
return {
mobileShow: false
};
}
};