navigator.uvue 611 字节
Newer Older
1
<template>
2 3 4 5 6 7 8 9
  <page-head :title="title"></page-head>
  <view class="uni-padding-wrap uni-common-mt">
    <navigator class="navigator navigate" url="navigate?title=navigate">
      <button type="default">跳转到新页面</button>
    </navigator>
    <navigator class="navigator redirect" url="redirect?title=redirect" open-type="redirect">
      <button type="default">在当前页打开</button>
    </navigator>
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
  </view>
</template>

<script>
  export default {
    data() {
      return {
        title: 'navigator'
      }
    }
  }
</script>

<style>
  .navigator {
25
    margin-bottom: 15px;
26
  }
27
</style>