我正在使用 Verta 库将 Laravel 中的公历日期转换为回历日期 https://github.com/hekmatinasser/verta
在简单模式(.blade.php 文件)中,我使用如下代码:
{{ Verta($category->created_at)->format('%d %B %Y') }}
for converting {{created_at}}
Run Code Online (Sandbox Code Playgroud)
但在 Vue js 中我无法访问这种格式
{{category.created_at}}
Run Code Online (Sandbox Code Playgroud)
如何使用此方法转换 vue js 日期?