pushrules.vue 338 B

12345678910111213141516171819202122
  1. <template>
  2. <view>
  3. <web-view :src="linkurl"></web-view>
  4. </view>
  5. </template>
  6. <script>
  7. import { pushRulesUrl } from "@/config/config";
  8. export default {
  9. data() {
  10. return {
  11. linkurl: "",
  12. };
  13. },
  14. onLoad() {
  15. this.linkurl = pushRulesUrl + "?token=" + this.$db.get("access_token");
  16. },
  17. };
  18. </script>
  19. <style></style>