Vue Unresolved Variable PhpStorm
问题 I have a Vue script. When I debug it with PhpStorm, I got Unresolved variable syntax error even though I set the variable redirect_to . Please check image. How can I solve it? <script> const timeToRefetch = 2000; let intervalRef; const homePageUrl = "/"; let messageCount = 0; var app = new Vue({ el: "#app", data: { status: "", message: "", redirect_to: "" }, created() { const refThis = this; intervalRef = setInterval(() => { fetch(ApiUrl) .then(response => response.json()) .then(repos => {