<?php
namespace app\common\tagLib;
use think\template\TagLib;
class CmsTag extends TagLib
{
protected $tags = [
'nav' => ['attr' => 'pid,limit', 'close' => 1], ];
protected function tagNav($tag)
{
$pid = isset($tag['pid']) && $tag['pid'] ? $tag['pid'] : 0;
}
}