1
zhangqian
2023-06-02 2b1b6682383891a60e149f2f7d40f737e462e24f
1
2
3
4
5
6
7
8
<template>
    <template if:true={accounts.data}>
        <p>{accounts.data}</p>
    </template>
    <template if:true={accounts.error}>
        <c-error-panel errors={accounts.error}></c-error-panel>
    </template>
</template>