環境 Vue:2.6.11 内容 Vue.jsのフイルターという機能を使うことで、画面に表示されるテキストを自由にフォーマットすることができます。 ローカルフィルター <template> <table> <p {{sample | lowerCase}} </p> </table> </template> <script> export default { data() { return { // この文字列を小文字化する sample:"VUESAMPLE" } }, // フィルター filters:{ lowerCase(value){ return value.toLowerCase…