ember中使用第三方插件的方法

介绍了在ember项目中如何引入使用第三方的插件,本文将以 Layui为例进行说明。

  1. 先找到这个插件在 npm库中的名称,比如layui的名称为layui-src
  2. 使用 npm安装包名。
    例如,安装layui,使用命令:
cd emberProject  # 进入ember项目文件
npm install layui-src
  1. 安装完成后,打开文件 ember-cli-build.js ,这是 ember-cli 工具构建的配置文件。
    增加一下几行:
  app.import('node_modules/layui-src/build/layui.js');
  app.import('node_modules/layui-src/build/css/layui.css');

layui-src 换为将要引入的包即可。

你可能感兴趣的:(ember中使用第三方插件的方法)