navigator.uvue 826 字节
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>
雪洛's avatar
雪洛 已提交
10 11 12 13
    <navigator style="flex-direction: row;justify-content: space-between;">
      <text>两端对齐样式测试</text>
      <view style="width: 20px;height: 20px; background-color: aqua;"></view>
    </navigator>
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
  </view>
</template>

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

<style>
  .navigator {
29
    margin-bottom: 15px;
30
  }
31
</style>