`;
var lg_sidebar = Vue.createApp({
mounted() {
this.$nextTick(function () {
if (ResponsiveCheck('lg') == true) {
postscribe('#lg-google-ad', GoogleAd);
console.log('lg');
} else {
postscribe('#lg-google-ad', '');
console.log('not lg');
}
});
},
});
lg_sidebar.mount('.lg.sidebar2');
var mdsm_sidebar = Vue.createApp({
mounted() {
this.$nextTick(function () {
if (ResponsiveCheck('mdsm') == true) {
postscribe('#mdsm-google-ad', GoogleAd);
console.log('mdsm show');
} else {
postscribe('#mdsm-google-ad', '');
console.log('mdsm not show');
}
});
},
});
mdsm_sidebar.mount('.md.sm.sidebar');
-->