• This project
    • Loading...
  • Sign in

Hooke / map-demo

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
  • map-demo
  • src
  • components
  • template
  • index.vue
  • hookehuyr's avatar
    🎉 init: 项目初始化 · 8181be2b
    8181be2b
    hookehuyr authored 2023-05-29 11:36:35 +0800
index.vue 338 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 24 25 26 27 28 29 30 31 32 33
<template>
  <div></div>
</template>

<script setup>
import { ref, reactive, onMounted } from 'vue'
const props = defineProps({
  type: String
})

  onMounted(() => {
    
  })
</script>

<script>
export default {
  data () {
    return {

    }
  },
  mounted () {

  },
  methods: {

  }
}
</script>

<style lang="less" scoped>
</style>