1
0
mirror of https://gitee.com/vant-contrib/vant.git synced 2025-04-06 03:57:59 +08:00
vant/docs/components/mobile-computed.js
2017-03-22 17:00:29 +08:00

20 lines
269 B
JavaScript

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