2

我是 Vue 和 Vuetify 的新手。我正在使用 TSX——Typescript JSX——渲染创建简单的应用程序。在浏览器中运行的应用程序在控制台中出现以下错误

[Vue 警告]:未知的自定义元素:<v-app> - 您是否正确注册了组件?对于递归组件,请确保提供“名称”选项。

在发现

---> 在 src/App.vue

[Vue 警告]:未知的自定义元素:<v-content> - 您是否正确注册了组件?对于递归组件,请确保提供“名称”选项。

在发现

---> 在 src/App.vue

...

这里是 App.vue

<script lang="tsx">
import { Component, Vue } from "vue-property-decorator";

@Component
export default class App extends Vue {
  render() {
    return (
      <div id="app">
        <v-app>
          <v-content>
            <p>Hello World</p>
          </v-content>
        </v-app>
      </div>
    );
  }
}
</script>

<style>
#app {
  font-family: "Avenir", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  color: #2c3e50;
  margin-top: 60px;
}
</style>

main.ts

import Vue from 'vue'
import './plugins/vuetify'
import App from './App.vue'

Vue.config.productionTip = false

new Vue({
  render: h => h(App),
}).$mount('#app')

插件/vuetify.ts

import Vue from 'vue'
import Vuetify from 'vuetify/lib'
import 'vuetify/src/stylus/app.styl'

Vue.use(Vuetify, {
  iconfont: 'md',
})

你可以在下面的 github 链接中找到完整的项目文件 https://github.com/janucaria/vuetify-tsx-demo

4

1 回答 1

2

在您的 App.vue 中,导入所需的 Vuetify 组件,如下所示:

<script lang="tsx">
import { Component, Vue } from "vue-property-decorator";
import { VApp, VContent } from 'vuetify/lib';

@Component({
  components: {
   'v-app': VApp,
   'v-content': VContent
  }
})
export default class App extends Vue {
  render() {
    return (
      <div id="app">
        <v-app>
          <v-content>
            <p>Hello World</p>
          </v-content>
        </v-app>
      </div>
    );
  }
}
</script>

<style>
#app {
  font-family: "Avenir", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  color: #2c3e50;
  margin-top: 60px;
}
</style>
于 2019-02-24T09:49:37.870 回答