0👍
Remove comments
Use asset function in link resources
<!DOCTYPE html>
<html>
<head>
<title>Chatroom</title>
<link rel="stylesheet" type="text/css" href="{{asset('css/app.css')}}">
</head>
<body>
<div id="app">
<h1>
Chat
</h1>
<chat-message></chat-message>
</div>
<script type="text/javascript" src="{{asset('js/app.js')}}"></script>
</body>
</html>
- [Vuejs]-How to handle warnings on input textbox for using special characters using Vuejs
- [Vuejs]-Pass the url of the current domain in axios VueJS
Source:stackexchange.com