LoginSignup
3
5

More than 5 years have passed since last update.

v-htmlでfilterを使いたい

Posted at

もっと簡単な方法があれば知りたい

vue
div(v-html="$options.filters.capitalize(message)")
vue.entry.js
// グローバル・フィルター
Vue.filter('capitalize', function (value) {
    if (!value) return ''
    value = value.toString()
    return value.charAt(0).toUpperCase() + value.slice(1)
})

サンプル

3
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
5