为了账号安全,请及时绑定邮箱和手机立即绑定

vue文件中的 text 内容没有显示,并且在页面报错

报错提示:

[Vue warn]: Failed to mount component: template or render function not defined.


found in


---> <App> at src/app.vue

       <Root>

相关代码:

app.vue:

    <template>

        <div id='test'>

            {{text}}

        </div>

    </template>

    <script>

        export default {

            data(){

                return{

                    text:'abc'

                }

            }

        }

    </script>

    <style>

    #test{

        color:black;

    }

    </style>


index.js:    

import Vue from 'vue'

import App from './app.vue'

import './assert/style/test.css'

import './assert/image/nn.png'

import './assert/style/test.less'

const root = document.createElement('div')

document.body.appendChild(root)


new Vue({

    render:(h)=>h(App)

}).$mount(root)


正在回答

2 回答

你的文件index.js文件引入app.vue的路劲写的是对的吗?你确认一下


0 回复 有任何疑惑可以回复我~

引入错误 你的render函数写错了 应该是 render:(h)=>h(app) 对应的是你写的vue模块

1 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

vue文件中的 text 内容没有显示,并且在页面报错

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信