我正在使用vue js 2.3.o版本。 我想用插件來處理模態窗口,例如vue-js-modal(https://github.com/euvl/vue-js-modal)。如何在Vue-js 2.x中使用插件?
當我想要使用它時,我會將庫添加到我的頁面。
<script type="text/javascript" src="/lib/vuejs/index.js"></script>
我放在一個地方,我創造VUE實例本身之前:
import VModal from 'vue-js-modal';
Vue.use(VModal);
var myVue = new Vue({
然後我看到:
SyntaxError: import declarations may only appear at top level of a module
我不知道它是什麼。哪裏不對 ?這個插件應該如何正確使用?
謝謝
您的'import'語句位於文件的最頂端嗎? – thanksd
它是帶有HTML內容的文件。我應該把它放?在上面 ?我做到了,結果相同 – squirrelInTheBarel