0

私のフォルダ構造はこれです:

./package.json

src/Notification.js

テスト/通知.js

ファイル Notification.js

export default {
  template: '<div>{{message}}</div>',
  data() {
    return {
      message: 'Hello world'
    };
  }
};

ファイル notification.js

import Vue from 'vue';
import test from 'ava';
import Notification from '../src/Notification';
test('that it renders a notification', t => {
  new Vue(Notification).$mount();
});

実行時のエラー: node_modules/.bin/ava

[Vue warn]: You are using the runtime-only build of Vue where the 
template compiler is not available. Either pre-compile the templates
into render functions, or use the compiler-incluided build. (found in
<Root>)
1failed
that it renders a notification
test finished without running any assertions

誰かが私に何が問題なのかを教えて、コードを説明できれば、本当に感謝しています。

4

2 に答える 2