如何在laravel中添加库vue?

时间:2017-07-27 13:47:52

标签: laravel-5 webpack vue.js

我正在使用laravel 5.4,使用webpack和vue。我不确定如何在vue中添加新库。

例如,我运行

npm install --save jquery vue2-select

接下来我需要做什么?我需要补充一下:

Import Selectize from 'vue2-selectize'

Require ('vue2-selectize')

  

resources / assets / js / app.js

文件或

  

resources / assets / js / bootstrap.js

有人可以帮我正确的工作顺序吗?

谢谢!

1 个答案:

答案 0 :(得分:1)

importrequire几乎完全相同。但import更受欢迎。

  1. npm install --save jquery vue2-selectize您应该在根文件夹中运行此文件,npm会将这些软件包放在“node_modules'”中。然后import命令会查看“node_modules”'并将其加载到您的文件中。
  2. import Selectize from 'vue2-selectize'在您要使用Selectize的文件中。
  3. resources / assets / js / app.js是的,这是您的前端应用的起点。在vue documentation中,您可以阅读有关single file components
  4. 的更多信息
  5. 观看this laracast series,可能还有其他一些。它们很容易理解。