12345678910111213141516171819202122232425262728 |
- <template>
- <div class="history">
- sfsd
- </div>
- </template>
- <script>
- import { reactive, toRefs } from 'vue'
- export default {
- name: 'MetaverseView',
- setup () {
- const state = reactive({
- count: 0,
- })
- return {
- ...toRefs(state),
- }
- }
- }
- </script>
- <style lang="less" scoped>
- .history {
- }
- </style>
|