• This project
    • Loading...
  • Sign in

Hooke / hager

Itomix
Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Snippets
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • hager
  • src
  • common
  • mixin.js
  • hookehuyr's avatar
    ✨ feat: 新增公用颜色和样式 · a86e211f
    a86e211f
    hookehuyr authored 2024-09-30 10:07:49 +0800
mixin.js 421 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
/*
 * @Date: 2022-07-26 09:49:54
 * @LastEditors: hookehuyr hookehuyr@gmail.com
 * @LastEditTime: 2024-09-30 09:44:55
 * @FilePath: /hager/src/common/mixin.js
 * @Description: 文件描述
 */

export default {
  // 初始化设置
  init: {
    mounted () {
      document.title = this.$route.meta.title;
    },
    data () {
      return {
        top_img_height: '35rem',
      };
    },
    methods: {
    },
  },
};