0๐
Run php artisan route:list
and check if route like '/deleteComment/{routeCommentID}'
exists and whether you use that route in your Vue application.
-2๐
for deleting a post itโs better to use
Route::delete('/deleteComment/{id}', 'CommentController@delete');
and checkout your blade for deletion
it should be something like below
<form action={{ 'wanted route' }} method="post">
@csrf
@method('delete')
// your code
</form>
Source:stackexchange.com