24 lines
326 B
Vue
24 lines
326 B
Vue
<template>
|
|
<div >
|
|
test
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent, PropType, Ref, toRaw, unref } from 'vue'
|
|
|
|
export default defineComponent({
|
|
components: { },
|
|
props: {
|
|
},
|
|
emits: ['highlightPlayer'],
|
|
data () {
|
|
return { test: 1 }
|
|
}
|
|
|
|
})
|
|
</script>
|
|
|
|
<style scoped>
|
|
</style>
|