mimicreative / yii2-slimscroll
为 Yii2 的Nice Scroll 资产包
1.0.0
2016-11-10 11:46 UTC
Requires
- bower-asset/jquery-slimscroll: >=1.3.8
- yiisoft/yii2: >=2.0.0
This package is not auto-updated.
Last update: 2024-09-14 20:30:30 UTC
README
安装
安装此扩展的首选方式是通过 Composer。
将以下内容添加到您的 composer.json
文件的 require 部分
"mimicreative/yii2-slimscroll": "~1.0"
然后在终端中运行
composer update
用法
作为 Yii2 视图文件中的资产包使用。
// write this in your view file or layout
\mimicreative\assets\SlimScrollAsset::register($this);
或者,您可能更喜欢将其包含在您的资产依赖中。
public $depends = [
// ...
'mimicreative\assets\SlimScrollAsset',
// ...
];