Opening tag "nz-step" not terminated.
时间: 2024-01-14 22:30:45 浏览: 155
rp-pppoe-3.15.tar.gz
It seems that there is an error in your code. The opening tag "nz-step" is not terminated properly. Make sure to close the tag by adding a corresponding closing tag or a self-closing slash ("/") at the end of the opening tag.
For example:
```
<nz-step></nz-step>
```
or
```
<nz-step />
```
Check your code and ensure that all HTML or component tags are properly closed.
阅读全文