updating final

This commit is contained in:
2020-03-20 03:51:13 +00:00
parent edeb57b8b1
commit 1925b45a0f
4 changed files with 11 additions and 13 deletions

View File

@@ -67,9 +67,6 @@
</v-content> </v-content>
<!-- <svg class="divider" width="100%" viewBox="0 0 10 1"> --> <!-- <svg class="divider" width="100%" viewBox="0 0 10 1"> -->
<svg class="divider" width="100%" viewBox="0 0 10 1"> <svg class="divider" width="100%" viewBox="0 0 10 1">
<v-container>
<h1>test</h1>
</v-container>
<polygon <polygon
stroke="none" stroke="none"
stroke-width="0" stroke-width="0"
@@ -82,6 +79,7 @@
<p class="text-center white--text">{{ new Date().getFullYear() }}|</p> <p class="text-center white--text">{{ new Date().getFullYear() }}|</p>
<strong class="text-center white--text"> AWS Tutorial</strong> <strong class="text-center white--text"> AWS Tutorial</strong>
<v-spacer></v-spacer> <v-spacer></v-spacer>
<strong class="text-center white--text">Email</strong>
</v-row> </v-row>
</v-footer> </v-footer>
</v-app> </v-app>

View File

@@ -3,14 +3,14 @@
</template> </template>
<script> <script>
import Lottie from "vue-lottie"; // import Lottie from "vue-lottie";
import * as delivery from "../assets/lottie/halloween.json"; import * as delivery from "@/assets/lottie/halloween.json";
// console.log(delivery) // console.log(delivery)
export default { export default {
name: "Animation", name: "Animation",
components: { // components: {
lottie: Lottie // lottie: Lottie
}, // },
data() { data() {
return { return {
defaultOptions: { animationData: delivery.default }, defaultOptions: { animationData: delivery.default },

View File

@@ -4,7 +4,7 @@ import router from "./router";
import store from "./store"; import store from "./store";
import vuetify from "./plugins/vuetify"; import vuetify from "./plugins/vuetify";
import Amplify from "aws-amplify"; import Amplify from "aws-amplify";
import awsconfig from "./aws-exports"; import awsconfig from "@/aws-exports";
import Lottie from "vue-lottie"; import Lottie from "vue-lottie";
Amplify.configure(awsconfig); Amplify.configure(awsconfig);

View File

@@ -20,28 +20,28 @@ const routes = [
// this generates a separate chunk (about.[hash].js) for this route // this generates a separate chunk (about.[hash].js) for this route
// which is lazy-loaded when the route is visited. // which is lazy-loaded when the route is visited.
component: () => component: () =>
import(/* webpackChunkName: "about" */ "../views/About.vue"), import(/* webpackChunkName: "about" */ "@/views/About"),
// meta: { requiresAuth: false } // meta: { requiresAuth: false }
}, },
{ {
path: "/signUp", path: "/signUp",
name: "signUp", name: "signUp",
component: () => component: () =>
import(/* webpackChunkName: "signup" */ "../views/SignUp.vue"), import(/* webpackChunkName: "signup" */ "@/views/SignUp"),
meta: { requiresAuth: false } meta: { requiresAuth: false }
}, },
{ {
path: "/signUpConfirm", path: "/signUpConfirm",
name: "signUpConfirm", name: "signUpConfirm",
component: () => component: () =>
import(/* webpackChunkName: "confirm" */ "../views/SignUpConfirm.vue"), import(/* webpackChunkName: "confirm" */ "@/views/SignUpConfirm"),
meta: { requiresAuth: false } meta: { requiresAuth: false }
}, },
{ {
path: "/signIn", path: "/signIn",
name: "signIn", name: "signIn",
component: () => component: () =>
import(/* webpackChunkName: "signin" */ "../views/SignIn.vue"), import(/* webpackChunkName: "signin" */ "@/views/SignIn"),
meta: { requiresAuth: false } meta: { requiresAuth: false }
} }
]; ];