vue提示错误:321:11 warning Property name “baseTable” is not PascalCase vue/component-definition-name-casing,错误原因是组件名称的首字母要大写。
<script lang="ts">
export default {
name: 'baseTable',//错误写法
name: 'BaseTable',//正确写法
};
</script>
(adsbygoogle = window.adsbygoogle || []).push({});
来源:https://www.02405.com/archives/8460