July 2019
Intermediate to advanced
416 pages
10h 6m
English
Before we start addressing pose detection, we are going to add a component that will play host to the relevant functionality. As this is our first component from scratch, we'll also cover it from scratch. Inside our views folder, create a file called Pose.vue. This file is going to contain three logical elements, so we will start off by adding those and setting up our template to use Bootstrap:
<template> <div class="container"> </div></template><script lang="ts"></script><style scoped></style>
Read now
Unlock full access