18 lines
351 B
Vue
18 lines
351 B
Vue
<template>
|
|
<custom-navbar :title="navTitle" :showBack="true" color="#FFFFFF"
|
|
:rightIcon="isRightIconVisible ? '/static/images/common/shape.png' : ''" @right-click="shareUp"></custom-navbar>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
navTitle: 'BJQ6075',
|
|
isRightIconVisible: false,
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
</style> |