LoginSignup
1
1

More than 5 years have passed since last update.

Angularのtemplateでng-classがたくさんあるとき in Jade

Last updated at Posted at 2015-03-14
div(
  ng-class= "{" +
    "'cls-a': type === 'a'," +
    "'cls-b': type === 'b'," +
    "'cls-c': type === 'c'," +
    "'cls-d': type === 'd'"  +
  "}"
).base-class
 p こんにちは

こうやって書くと良い。まずインデントが見やすくなるし。なんか変更があるときに ↓

pr.gif

こうやって、一気に変更できるのだ。

やったね!!

1
1
2

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
1
1