#
Junjie
2024-07-02 d4f427bf7c0ff1cf0ed1ac420bba8a063f9ef840
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<script setup>
import { getCurrentInstance, ref } from 'vue';
const context = getCurrentInstance()?.appContext.config.globalProperties;
</script>
 
<script>
export default {
  name: '主页'
}
</script>
 
<template>
  Hello World
</template>