报错 template or render function not defined.

报这个错误  说明你引得组件里没有写东西呢,组件里必须要有这个结构

<template>
  <div>
    <h1>sideBar</h1>
  </div>
</template>

<script>
export default {

}
</script>

<style>

</style>

  

原文地址:https://www.cnblogs.com/ahalvxiaobu/p/13792621.html