1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
| /**
| * CAnchor - 应用内超连接
| * @author Tevin
| */
|
| <template>
| <view
| class="c-anchor"
| @tap="evt => handleGoTo()"
| >
| <slot />
| </view>
| </template>
|
| <script>
| import Taro from '@tarojs/taro';
|
| export default {
| name: 'CAnchor',
| props: {
| href: String,
| rel: {
| type: String,
| default: 'navigate',
| },
| },
| data() {
| return {};
| },
| methods: {
| handleGoTo() {
| if (!this.href) {
| return;
| }
| if (this.rel === 'navigate') {
| if (this.href === 'back') {
| Taro.navigateBack();
| } else {
| Taro.navigateTo({ url: this.href });
| }
| } else if (this.rel === 'redirect') {
| Taro.redirectTo({ url: this.href });
| }
| },
| },
| mounted() {},
| };
| </script>
|
|