我需要使用过滤器"大写"在vue js 2中,但是当我根据文档添加过滤器时,它给了我错误。
我的代码
Sub nestingMacro()
Dim currentFile As String
Dim location As String
location = InputBox("Location of folder")
If Right(location, 1) <> "\" Then location = location + "\"
currentFile = Dir(location & "*.doc*")
Do While (currentFile <> "")
Documents.Open FileName:=location & currentFile
Call findReplaceStyle
Call countErrorsQuality
Call saveClose
currentFile = Dir()
Loop
End Sub
错误
任何想法,如何纠正错误?
答案 0 :(得分:1)
在模板语法中使用过滤器。
<li v-for="item in items" :key="item.first">{{item.first | capitalize}},{{item.last | capitalize}}</li>