perf: style

This commit is contained in:
xingyu
2022-12-06 21:38:59 +08:00
parent 8730de2100
commit 36adf2d240
4 changed files with 3 additions and 4 deletions

View File

@ -1,5 +1,5 @@
<template>
<Error type="403" @error-click="errorClick" />
<Error type="403" @error-click="errorClick()" />
</template>
<script setup lang="ts">
import { Error } from '@/components/Error'

View File

@ -1,5 +1,5 @@
<template>
<Error @error-click="errorClick" />
<Error @error-click="errorClick()" />
</template>
<script setup lang="ts">
import { Error } from '@/components/Error'

View File

@ -1,5 +1,5 @@
<template>
<Error type="500" @error-click="errorClick" />
<Error type="500" @error-click="errorClick()" />
</template>
<script setup lang="ts">
import { Error } from '@/components/Error'