123456789101112131415161718192021222324252627 |
- <template>
- <div>
- <div class="m-header ng-scope">
- <div class="p-wrap-full tc" @click="goto('/')">
- <span class="logo " style="color: white;font-size: 56px;">
- 福建省哲睿网络科技有限公司 </span>
- </div>
- </div>
- </div>
- </template>
- <script>
- export default {
- methods:{
- goto( path ){
- if( this.$route.path != path){
- this.$router.push({path})
- }
- }
- }
- }
- </script>
- <style lang="less">
- @import "./navbar.less";
- </style>
|