diff --git a/src/assets/images/BG_04.jpg b/src/assets/images/BG_04.jpg new file mode 100644 index 0000000..7740bad Binary files /dev/null and b/src/assets/images/BG_04.jpg differ diff --git a/src/router/index.js b/src/router/index.js index 65f6737..97a8a5c 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -8,7 +8,7 @@ const routes = [ { path: "/", name: "Home", - component: Home + component: Home, }, { path: "/about", @@ -17,44 +17,50 @@ const routes = [ // this generates a separate chunk (about.[hash].js) for this route // which is lazy-loaded when the route is visited. component: () => - import(/* webpackChunkName: "about" */ "../views/About.vue") + import(/* webpackChunkName: "about" */ "../views/About.vue"), }, { path: "/login", name: "Login", component: () => - import(/* webpackChunkName: "login" */ "../components/LoginFull.vue") + import(/* webpackChunkName: "login" */ "../components/LoginFull.vue"), }, { path: "/hello", name: "Hello", component: () => - import(/* webpackChunkName: "hello" */ "../components/HelloWorld.vue") + import(/* webpackChunkName: "hello" */ "../components/HelloWorld.vue"), }, { path: "/triangle", name: "Triangle", component: () => - import(/* webpackChunkName: "triangle" */ "../views/Triangle.vue") + import(/* webpackChunkName: "triangle" */ "../views/Triangle.vue"), }, { path: "/backgrounds", name: "Backgrounds", component: () => - import(/* webpackChunkName: "backgrounds" */ "../views/Backgrounds.vue") + import(/* webpackChunkName: "backgrounds" */ "../views/Backgrounds.vue"), }, { path: "/playground", name: "Playground", component: () => - import(/* webpackChunkName: "playground" */ "../views/Playground.vue") + import(/* webpackChunkName: "playground" */ "../views/Playground.vue"), }, { path: "/spacewheel", name: "SpaceWheel", component: () => - import(/* webpackChunkName: "spaceweel" */ "../views/SpaceWheel.vue") - } + import(/* webpackChunkName: "spaceweel" */ "../views/SpaceWheel.vue"), + }, + { + path: "/picaro", + name: "Picaro", + component: () => + import(/* webpackChunkName: "spaceweel" */ "../views/Picaro.vue"), + }, ]; const router = new VueRouter({ diff --git a/src/views/Picaro b/src/views/Picaro new file mode 100644 index 0000000..e69de29 diff --git a/src/views/Picaro.vue b/src/views/Picaro.vue new file mode 100644 index 0000000..e958e80 --- /dev/null +++ b/src/views/Picaro.vue @@ -0,0 +1,33 @@ + + + + + diff --git a/src/views/SpaceWheel.vue b/src/views/SpaceWheel.vue index ea929c9..c02b463 100644 --- a/src/views/SpaceWheel.vue +++ b/src/views/SpaceWheel.vue @@ -18,7 +18,7 @@ - +

Space Wheel diff --git a/src/views/stripe-appbar/Random.vue b/src/views/stripe-appbar/Random.vue index 1db14be..bc0e166 100644 --- a/src/views/stripe-appbar/Random.vue +++ b/src/views/stripe-appbar/Random.vue @@ -14,7 +14,10 @@ Spacewheel -
  • Item two
  • +
    + + Picaro + diff --git a/temp.md b/temp.md index 7634122..4597630 100644 --- a/temp.md +++ b/temp.md @@ -796,7 +796,24 @@ We can set two different appbars which can change on the viewport. You should use ``, `` and `` inside the ``. You can use the helper classes `hidden-sm-and-down` etc to display a row for different viewports. - +Example of a dynamic appbar: + + +### Subcomponents + +You can use `` for a title in the appbar: + +```html + +

    Savvy Firebase Tutorial

    +
    +``` + +You can use `` for a hamburger button (for mobile layouts): + +```html + +``` ## To Do @@ -817,3 +834,7 @@ Do buttons: Doc setting an image as background without transparent appbar Should show how to dynamically change height and left/right based on viewport (shorter appbar on small) + +Tomorrow: + +- Finish appbar (modal to popout)