我想使用 VueJS 在我的页面上显示一条消息,但 Laravel 不想显示它并向我发送一条错误消息:
Use of undefined constant message - assumed 'message' (this will throw an Error in a future version of PHP)
Run Code Online (Sandbox Code Playgroud)
我的index.blade.php:
<a v-bind:href="link"> {{ message }} </a>
Run Code Online (Sandbox Code Playgroud)
我的应用程序.js:
new Vue({
el: '#app',
data: {
message: 'Hello world',
}
});
Run Code Online (Sandbox Code Playgroud)