chore: remove unnecessary ref

This commit is contained in:
0x1a8510f2 2023-01-21 08:21:51 +00:00
parent c853abb99c
commit 59a3e4c8e2
Signed by: 0x1a8510f2
GPG Key ID: 1C692E355D76775D

View File

@ -18,15 +18,15 @@
</template>
<script lang="ts">
import { defineComponent, ref } from 'vue'
import { defineComponent } from 'vue'
import API from '../../api/api'
export default defineComponent({
data() {
return {
api: new API(),
aboutBuild: ref('no build info'),
aboutSystem: ref('no system info'),
aboutBuild: 'no build info',
aboutSystem: 'no system info',
timer: 0
}
},