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
| <template>
| <view class="c-nav-bar">
| <AtNavBar
| :title="title"
| leftIconType="chevron-left"
| :onClickLeftIcon="evt=>goBack()"
| />
| <view
| class="c-nav-bar-right"
| v-if="rightNav"
| @tap="evt=>goNav()"
| >
| <view v-html="rightNav"></view>
| </view>
| </view>
| </template>
|
| <script>
| import { AtNavBar } from 'taro-ui-vue';
| import './cNavBar.scss';
|
| export default {
| name: 'CNavBar',
| components: {
| AtNavBar,
| },
| props: {
| title: String,
| rightNav: String,
| onClickRigthNav: Function,
| },
| methods: {
| goBack() {
| window.history.go(-1);
| },
| goNav() {
| this.onClickRigthNav && this.onClickRigthNav();
| },
| },
| };
| </script>
|
|