代码之家  ›  专栏  ›  技术社区  ›  ItsPronounced Finn

在节点模块中找不到第三方VueJS组件

  •  1
  • ItsPronounced Finn  · 技术社区  · 6 年前

    使用 vue-cli 新版本的版本3 vuejs 项目(我已经研究了很多 vuejs公司 ,但这是第一次尝试实现第三方组件)。我试着使用一个网格组件,看起来令人印象深刻。组件是 here

    我已经设置了我的环境,安装了网格和组件 npm 按照他们网站的指示,配置了我自己的组件,并正确地导入了所有(我认为)内容。我甚至设置了一个数据数组属性作为填充网格的测试。我跑了 npm install 并确认文件夹已安装在我的 node_modules 文件夹(它们在那里)。这是我的 main.js :

    import Vue from 'vue'
    import App from './App.vue'
    import CGrid from 'vue-cheetah-grid'
    
    Vue.config.productionTip = false;
    Vue.use(CGrid);
    
    new Vue({
      render: h => h(App)
    }).$mount('#app')
    

    这是我的 App.vue :

    <template>
      <div id="app">
        <img alt="Vue logo" src="./assets/logo.png">
        <reports-grid></reports-grid>
      </div>
    </template>
    
    <script>
    import ReportsGrid from './components/ReportsGrid.vue'
    
    export default {
      name: 'app', 
      components: {
        reportsGrid: ReportsGrid
      }
    }
    </script>
    

    这是我的组件文件, ReportsGrid.vue :

    <template>
        <div class="grid">
            <c-grid ref="grid" :data="records" :frozen-col-count="1">
    
                <c-grid-column field="team" width="85">
                    Team
                </c-grid-column>
                <c-grid-column-group caption="Estimate">
    
                    <c-grid-column field="quotenum">
                        Quote #
                    </c-grid-column>
    
                    <c-grid-column field="quotedate">
                        Date
                    </c-grid-column>
    
                    <c-grid-column field="customer">
                        Customer
                    </c-grid-column>
    
                    <c-grid-column field="country">
                        Country
                    </c-grid-column>
    
                    <c-grid-column field="type">
                        Type
                    </c-grid-column>
    
                    <c-grid-column field="quoteamount">
                        Quote Amount
                    </c-grid-column>
                </c-grid-column-group>
                <c-grid-column-group caption="Sales Order">
    
                    <c-grid-column field="salesordernum">
                        Sales Order #
                    </c-grid-column>
    
                    <c-grid-column field="salesorderamount">
                        Sales Order Amount
                    </c-grid-column>
    
                    <c-grid-column field="margin">
                        Average Margin
                    </c-grid-column>
    
                    <c-grid-column field="status">
                        Status
                    </c-grid-column>
                </c-grid-column-group>
            </c-grid>
        </div>
    </template>
    
    <script>
        export default {
            name: 'app',
            data: function() {
                return {
                     records: [
                    {
                        team: 'GG', quotenum: '20211', quotedate:'today', customer: 'AirNN', country: 'Peru', salesordernum: '11111',
                        type: 'Production', quoteamount: '$1300', salesorderamount: '$1200', margin: '25%', status: 'WIN Partial'
                    },
                    {
                        team: 'LL', quotenum: '20200', quotedate:'today', customer: 'Paris', country: 'Mexico', salesordernum: '11122',
                        type: 'Bid', quoteamount: '$12300', salesorderamount: '$10300', margin: '20%', status: 'WIN Partial'
                    }
                ]
    
                }
            }
        }
    </script>
    

    主要.js import CGrid from 'vue-cheetah-grid' (此错误不会显示在我的终端中,只显示在my main.js中:

    [ts]
    Could not find a declaration file for module 'vue-cheetah-grid'. 'path.to/node_modules/vue-cheetah-grid/dist/vueCheetahGrid.js' implicitly has an 'any' type.
      Try `npm install @types/vue-cheetah-grid` if it exists or add a new declaration (.d.ts) file containing `declare module 'vue-cheetah-grid';`
    

    节点\u模块 npm install @types/vue-cheetah-grid 但还是没用。

    1 回复  |  直到 6 年前
        1
  •  1
  •   Richard Matsen    6 年前

    如果你把这个添加到你的组件中,它看起来就可以了

    <style scoped>
      html {
        height: 100%;
      }
      body {
        height: calc(100% - 100px);
      }
      .contents {
        padding: 30px;
        box-sizing: border-box;
      }
      .demo-grid {
        width: 100%;
        height: 300px;
        box-sizing: border-box;
        border: solid 1px #ddd;
      }
      .demo-grid.large {
        height: 500px;
      }
      .demo-grid.middle {
        height: 300px;   
      }
      .demo-grid.small {
        height: 240px;   
      }
      .log {
        width: 100%;
        height: 80px;
        background-color: #F5F5F5;
      }
      .hljs { 
        tab-size: 4;
      }
    </style>