2021年3月10日水曜日

BootstrapVueを動かす

NuxtでBootstapVueを入れて、動かしてみた。

公式のサイトに情報はあるけど、前置きが長いのね。

冒頭にインストール方法とサンプルコードがあるのが個人的にはうれしいのだけどね。

https://bootstrap-vue.org/docs


ということで、後で再度同じことを行うときに、長い前置きを読まなくてよくするために備忘録を残しておく。

まず、BootstrapVueの設定。(yarnを使っている。BootstrapVueを追加する。)

yarn add bootstrap-vue

そんで、サンプルコード。

index.vueにコーディングする。(こちらのサイトの内容そのまま https://bootstrap-vue.org/docs/components/table

これで、動きましたよ、と。

  1. <template>
  2. <div>
  3. <b-table :items="items" hover="" striped=""></b-table>
  4. </div>
  5. </template>
  6.  
  7.  
  8. <script>
  9. export default {
  10. data() {
  11. return {
  12. items: [
  13. { age: 40, first_name: 'Dickerson', last_name: 'Macdonald' },
  14. { age: 21, first_name: 'Larsen', last_name: 'Shaw' },
  15. { age: 89, first_name: 'Geneva', last_name: 'Wilson' },
  16. { age: 38, first_name: 'Jami', last_name: 'Carney' }
  17. ]
  18. }
  19. }
  20. }
  21. </script>