below is my code by using vue.js I have written thee code and here my problem is while i am running this code in notepad++ it is working fine but while i am working with django project at pycharm it is not giving any output. As you can I have interpolated message, so its is giving me the output at notepad++ but not in pycharm with django project if anyone have an idea about this please help me struggling a lot for this
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<div id="app">
<% message %>
</div>
<script src="https://cdn.jsdelivr.net/npm/vue"></script>
<script>
var app = new Vue({
el: '#app',
data: {
message: 'Hello world!',
delimiters: ["<%","%>"]
}
});
</script>
</body>
</html>