こちらサイトにて、filters
の使い方について調べていたのですが、分からない箇所があり、質問させて貰いました。
具体的には、以下のコードについてなのですが、{{ msg | uppercase }}
こちらの縦線(|
)はどのような意味になりますでしょうか...?
uppercase
を通したい場合は、uppercase(msg)
こちらのような記述になるのではないのでしょうか...?
<template> <div class="hello"> <h1>{{ msg | uppercase }}</h1> </div> </template> <script> export default { name: 'HelloWorld', props: { msg: String }, filters: { uppercase: function (value) { return value.toUpperCase() } } } </script> <!-- Add "scoped" attribute to limit CSS to this component only --> <style scoped> h3 { margin: 40px 0 0; } ul { list-style-type: none; padding: 0; } li { display: inline-block; margin: 0 10px; } a { color: #42b983; } </style>
こちら、疑問点につきまして、ご助言の程頂けましたら幸いです。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/07/15 05:25