• 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: 基本自适应布局结构 · b9c0e4c0
    b9c0e4c0
    hookehuyr authored 2024-09-26 14:45:11 +0800
mixin.js 341 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/*
 * @Date: 2022-07-26 09:49:54
 * @LastEditors: hookehuyr hookehuyr@gmail.com
 * @LastEditTime: 2022-08-19 17:11:29
 * @FilePath: /web/src/common/mixin.js
 * @Description: 文件描述
 */

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