21 lines
189 B
Vue
21 lines
189 B
Vue
<template>
|
|
|
|
</template>
|
|
|
|
<script setup>
|
|
import { ref, inject, onMounted } from 'vue';
|
|
const $http = inject('$http')
|
|
|
|
|
|
onMounted(() => {
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
</script>
|
|
|
|
<style scoped>
|
|
</style>
|