AppAsset.php 466 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. /**
  3. * Author: lf
  4. * Blog: https://blog.feehi.com
  5. * Email: job@feehi.com
  6. * Created at: 2017-03-15 21:16
  7. */
  8. namespace frontend\assets;
  9. class AppAsset extends \yii\web\AssetBundle
  10. {
  11. public $css = [
  12. 'static/css/style.css',
  13. 'static/plugins/toastr/toastr.min.css',
  14. ];
  15. public $js = [
  16. 'static/js/index.js',
  17. 'static/plugins/toastr/toastr.min.js',
  18. ];
  19. public $depends = [
  20. 'yii\web\YiiAsset',
  21. ];
  22. }