24 lines
901 B
Plaintext
24 lines
901 B
Plaintext
<import src="../../common/head.wxml" />
|
|
<import src="../../common/foot.wxml" />
|
|
|
|
<view class="container">
|
|
<template is="head" data="{{title: 'navigator'}}"/>
|
|
|
|
<view class="page-body">
|
|
<view class="btn-area">
|
|
<navigator url="navigate?title=navigate" hover-class="ohter-navigator">
|
|
<button type="default">跳转到新页面</button>
|
|
</navigator>
|
|
<navigator url="redirect?title=redirect" redirect hover-class="other-navigator-hover">
|
|
<button type="default">在当前页打开</button>
|
|
</navigator>
|
|
<!-- <navigator target="miniProgram" hover-class="other-navigator-hover" open-type="navigate" app-id="5f3b939a8d4295000144d3f2" version="release" >
|
|
<button type="default">打开小程序</button>
|
|
<view class="tips"> 请先确保该 appId 可以打开</view>
|
|
</navigator> -->
|
|
</view>
|
|
</view>
|
|
|
|
<template is="foot" />
|
|
</view>
|