12
12

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

bowerを利用したUI Bootstrapの導入方法

Last updated at Posted at 2014-09-08

bowerを利用したUI Bootstrapの導入にちょっと手こずったのでメモ
これでいける

使い方については公式を参照
http://angular-ui.github.io/bootstrap/

bower.json
"dependencies": {
"angular": "~1.2.23",
"angular-ui-bootstrap": "~0.11.0",
"angular-ui-bootstrap-bower": "~0.11.0",
"bootstrap-css-only": "~3.2.0"
}
index.jade
link(rel="stylesheet", href="/bower_components/bootstrap-css-only/css/bootstrap.min.css")
script(src="bower_components/angular/angular.js")
script(src="bower_components/angular-ui-bootstrap-bower/ui-bootstrap-tpls.min.js")
12
12
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
12
12

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?