16 lines
183 B
Vue
16 lines
183 B
Vue
|
|
<template>
|
||
|
|
|
||
|
|
<div>123
|
||
|
|
|
||
|
|
|
||
|
|
general
|
||
|
|
</div>
|
||
|
|
|
||
|
|
</template>
|
||
|
|
<script setup lang='ts'>
|
||
|
|
import { ref, reactive } from 'vue'
|
||
|
|
</script>
|
||
|
|
<style lang="scss" scoped>
|
||
|
|
|
||
|
|
</style>
|