mimicreative/yii2-simple-line-icons

Yii2 简线图标资源包

1.0.0 2016-11-01 10:05 UTC

This package is not auto-updated.

Last update: 2024-09-14 19:20:19 UTC


README

安装

安装此扩展的首选方式是通过 composer

在你的 composer.json 文件的 require 部分添加以下内容

"mimicreative/yii2-simple-line-icons": "~1.0"

在终端运行

composer update

使用

在 Yii2 视图文件中将它用作资源包。

// write this in your view file or layout
\mimicreative\assets\SimpleLineIconsAsset::register($this);

或者,你可能更喜欢将其包含在你的资产依赖中。

public $depends = [
  // ...
  'mimicreative\assets\SimpleLineIconsAsset',
  // ...
];