导入Vue(Vue.js)组件没有报错,但是不显示

Importing Vue (Vue.js) Component Results in No Errors, But Doesn't Display

Vue 的基本实现作为测试 运行,我在将数据分解为组件时遇到了一些问题。这里是 HTML:

<body>
    <header id="main-header">
       <custom-header></custom-header>
    </header>
</body>

我正在实例化一个 Vue 实例并将其绑定到 #main-header:

import CustomHeader from '../header.vue';

const header = new Vue({
    el: '#main-header',
    data: chx,
    components: {
        'custom-header': CustomHeader
    },
    methods: {
        run: function() {
            console.log('run');
        },
        print: function() {
            window.print()
        },
        save: function() {
            console.log('save');
        }
    }
});

以及导入的模板:

<template>
    <div class="header-menu">
        <img class="logo" src="images/logo.png">
    </div>
    <div class="header-menu">
        <h1 id="date-range-label"><span v-show="dates.startFormatted">{{dates.startFormatted}} - {{dates.endFormatted}}</span></h1>
        <i v-on:click="settingsVisible = !settingsVisible" id="settings" class="fa fa-2x fa-cog settings-icon no-print"></i>
    </div>
</template>

控制台或 Webpack 进程未记录任何错误。由于没有记录任何内容,因此不确定从这里去哪里。 <header> div 在结果 HTML.

中保持为空

您的自定义 header 组件在其模板的根部有两个 div 元素。一个组件只能有一个根元素。

对于您的情况,将内容包装在 div 元素中可能最简单:

<template>
  <div>
    <div class="header-menu">
      <img class="logo" src="images/logo.png">
    </div>
    <div class="header-menu">
      <h1 id="date-range-label"><span v-show="dates.startFormatted">{{dates.startFormatted}} - {{dates.endFormatted}}</span></h1>
      <i v-on:click="settingsVisible = !settingsVisible" id="settings" class="fa fa-2x fa-cog settings-icon no-print"></i>
    </div>
  </div>
</template>