我正在尝试在网络上打印我的Vue组件的模板,但出现上述错误。我不知道上传者是什么。 有人可以帮我吗?
index.blade.php:
<html>
<head>
<meta name="csrf-token" content="{{ csrf_token() }}">
</head>
<body>
<div id="app">
<testing></testing>
</div>
<script src="{{asset('js/app.js')}}"></script>
</body>
</html>
app.js:
require('./bootstrap');
window.Vue = require('vue');
Vue.component('testing', require('./components/testing.vue'));
const app = new Vue({
el: '#app'
});
testing.vue:
<template>
<h2>
testing
</h2>
</template>
<script>
export default {
name: "testing"
}
</script>
作为结果,我希望网络上的模板中包含字符串“ testing”