index.vue
433 Bytes
<template>
<web-view :src="webViewUrl"></web-view>
</template>
<script>
import { t } from '@/plugins/index.js'
export default {
data() {
return {
webViewUrl: "https://vionvision.com/Privacy_global.html" // 确保这里正确
// webViewUrl: "http://127.0.0.1:5500/privacy/Privacy.html"
};
},
onLoad(){
uni.setNavigationBarTitle({
title: t('app.login.privacyAgreement')
});
}
};
</script>