在frontend/assets/AppAsset.php
代碼示例
namespace frontend/assets;use yii/web/AssetBundle;/** * Main frontend application asset bundle. */class AppAsset extends AssetBundle{  public $basePath = '@webroot';  public $baseUrl = '@web';  public $css = [    'css/site.css',  ];  public $js = [    'js/main.js',  ];  public $depends = [    'yii/web/YiiAsset',    'yii/bootstrap/BootstrapAsset',//注意這里必須要有    'rmrevin/yii/fontawesome/AssetBundle',  ];}在vendor/yiisoft/yii2-bootstrap/BootstrapAsset.php 文件里
namespace yii/bootstrap;use yii/web/AssetBundle;/** * Asset bundle for the Twitter bootstrap css files. * * @since 2.0 */class BootstrapAsset extends AssetBundle{  public $sourcePath = '@bower/bootstrap/dist';  public $css = [    'css/bootstrap.css',  ];  //下面是增加的代碼  public $js = [    'js/bootstrap.js',  ];}OK了
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持VeVb武林網。
新聞熱點
疑難解答
圖片精選