将js代码架构改为app下渲染;

This commit is contained in:
2023-09-18 16:32:46 +08:00
parent 4d9434454e
commit ca729da0a9
86 changed files with 1572 additions and 719 deletions

View File

@@ -36,4 +36,16 @@ class View extends ThinkView
return $this;
}
/**
* 配置模板引擎.
* @param array $config 参数
* @return $this
*/
public function config(array $config)
{
$this->driver()->config($config);
return $this;
}
}