| 1234567891011121314151617181920 | <?phpdeclare(strict_types=1);namespace app\common\facade;use think\Facade;/** * @see \app\common\utils\VueUtils * @package app\common\facade * @mixin \app\common\utils\VueUtils * @method static string codeModel() */class VueUtils extends Facade{    protected static function getFacadeClass()    {        return 'app\common\utils\VueUtils';    }}
 |