shop_app/pages/article/index.vue

14 lines
175 B
Vue
Raw Normal View History

2025-05-08 09:16:37 +08:00
<template>
<web-view :src="advUrl"></web-view>
</template>
<script>
export default {
setup() {
return {
advUrl: uni.getStorageSync('official_link')
}
}
}
</script>