mirror of
https://github.com/1024-lab/smart-admin.git
synced 2025-09-20 19:18:47 +00:00
28 lines
381 B
Vue
28 lines
381 B
Vue
<template>
|
|
|
|
<van-nav-bar :title="title" left-text="返回" left-arrow @click-left="onClickLeft" />
|
|
|
|
</template>
|
|
<script>
|
|
export default {
|
|
name: 'RouterNavBar',
|
|
props: {
|
|
title: {
|
|
type: String
|
|
},
|
|
path: {
|
|
type: String
|
|
}
|
|
},
|
|
data() {
|
|
return {};
|
|
},
|
|
methods: {
|
|
onClickLeft() {
|
|
this.$router.push(this.path);
|
|
}
|
|
}
|
|
};
|
|
</script>
|
|
|