rmrevin/yii2-imperavi-bundle

带有 Imperavi WYSIWYG redactor 的 Yii 2 资产包

安装: 331

依赖项: 1

建议者: 0

安全性: 0

星标: 3

关注者: 2

分支: 1

开放问题: 0

语言:JavaScript

类型:yii2-extension

1.0.5 2015-06-18 17:43 UTC

This package is not auto-updated.

Last update: 2024-09-14 16:14:00 UTC


README

License Latest Stable Version Latest Unstable Version Total Downloads

安装

composer.json 中添加

{
    "require": {
        "rmrevin/yii2-imperavi-bundle": "1.0.4"
    }
}

使用方法

在视图中

<?
// ...

rmrevin\yii\imperavi\AssetBundle::register($this);

或作为你的资产包的依赖项

<?
// ...

class AppAsset extends AssetBundle
{
	// ...

	public $depends = [
		// ...
		'\rmrevin\yii\imperavi\AssetBundle'
	];
}