Vue 设置脚本提前返回?
P粉497463473
P粉497463473 2023-08-29 19:25:34
0
1
543
<p>是否可以在 Vue 设置脚本中提前返回?</p> <pre class="brush:html;toolbar:false;"><template> <div v-if="error || !data">Fallback content...</div> <div v-else>Page content...</div> </template> <script setup lang="ts"> // ... const { data, error } = await fetchApi() // Early return here? E.g., if (error || !data) return // ... // Lots of code which doesn't need to run if error. // E.g., calculation of variables only used in the page content. // ... </script> </pre> <p>注意:我来自 React 世界,对 Vue 还算陌生。</p>
P粉497463473
P粉497463473

全部回复(1)
P粉458913655

你可以抛出一个错误:

const {data, error} = await fetchApi()
if(error || !data) throw new Error('your error message')

它阻止其余代码运行

热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板