• This project
    • Loading...
  • Sign in

Hooke / print-web

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
  • print-web
  • src
  • App.vue
  • hookehuyr's avatar
    ✨ feat: 引入element ui · 6ae7cc7e
    6ae7cc7e
    hookehuyr authored 2023-10-09 11:16:46 +0800
App.vue 391 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
<!--
 * @Date: 2023-10-09 10:45:07
 * @LastEditors: hookehuyr hookehuyr@gmail.com
 * @LastEditTime: 2023-10-09 11:02:09
 * @FilePath: /print-web/src/App.vue
 * @Description: 文件描述
-->
<template>
  <div>
    <router-view />
  </div>
</template>

<script setup>
import { ref } from 'vue'
import { useRoute, useRouter } from 'vue-router'

</script>

<style lang="less" scoped>

</style>