cxgj/assets/UeditorAsset.php
2023-11-27 09:45:13 +08:00

32 lines
665 B
PHP

<?php
/**
* @link http://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license http://www.yiiframework.com/license/
*/
namespace app\assets;
use yii\web\AssetBundle;
/**
* Main application asset bundle.
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @since 2.0
*/
class UeditorAsset extends AssetBundle
{
public $basePath = '@webroot';
public $baseUrl = '@web';
public $css = [
];
public $js = [
'/statics/ueditor/ueditor.config.js?v=1.0.0',
'/statics/ueditor/ueditor.all.min.js?v=1.0.0',
];
public $depends = [
//'yii\web\YiiAsset',
];
}