Description
Vue version
3
Link to minimal reproduction
https://github.com/mashoun/vuejserror.git
Steps to reproduce
go to index.html then open with live server, the error is consoled :
vue.global.prod.js:1 Uncaught SyntaxError: 63 (at vue.global.prod.js:1:78062)
at Vi (vue.global.prod.js:1:78062)
at nu (vue.global.prod.js:1:119221)
at Array.cu (vue.global.prod.js:1:119590)
at zc (vue.global.prod.js:1:96277)
at vue.global.prod.js:1:96681
at zc (vue.global.prod.js:1:96691)
at Wc (vue.global.prod.js:1:95664)
at ja (vue.global.prod.js:1:117574)
at vue.global.prod.js:1:122203
at fu (vue.global.prod.js:1:122347)
What is expected?
if this simple vue app is not working then i am sure the error is from the vue cdn , also i tried to use the dev version as cdn it is also not working properly
HTML FILE :
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<script src="https://unpkg.com/vue@3/dist/vue.global.prod.js"></script>
</head>
<body id="app">
<h1>Test vue</h1>
{{title}}
<script src="./app.js"></script>
</body>
</html>
app.js FILE
const app = Vue.createApp({
data(){
return{
title:"mashoun"
}
}
});
app.mount('#app');
TEH ERROR
vue.global.prod.js:1 Uncaught SyntaxError: 63
at Vi (vue.global.prod.js:1:78062)
at nu (vue.global.prod.js:1:119221)
at Array.cu (vue.global.prod.js:1:119590)
at zc (vue.global.prod.js:1:96277)
at vue.global.prod.js:1:96681
at zc (vue.global.prod.js:1:96691)
at Wc (vue.global.prod.js:1:95664)
at ja (vue.global.prod.js:1:117574)
at vue.global.prod.js:1:122203
at fu (vue.global.prod.js:1:122347)
yesterday every thing was good but now all my clients project are down and returning the same error please help me
What is actually happening?
yesterday every thing was good but now all my clients project are down and returning the same error
System Info
No response
Any additional comments?
No response