🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
## 站点标签 ### 注意使用时需要在页面中引入Helper类库 ``` @inject('helper', 'App\Services\Helper') ``` 网站名称 ``` <title>{{$helper::getConfig('WEB_SITE_NAME')}}</title> ``` 网站关键字 ``` <meta name="keyword" content="{{$helper::getConfig('WEB_SITE_KEYWORDS')}}"> ``` 网站描述 ``` <meta name="description" content="{{$helper::getConfig('WEB_SITE_DESCRIPTION')}}"> ``` 网站LOGO ``` <img src="{{ $helper::getPicture(cache('WEB_SITE_LOGO')) }}" /> ``` 网站统计代码 ``` {{$helper::getConfig('WEB_SITE_SCRIPT')}} ``` 网站备案号 ``` {{$helper::getConfig('WEB_SITE_ICP')}} ```