November 2017
Beginner to intermediate
398 pages
8h 42m
English
We will create a separate component for the dashboard indicators, as follows:
<template> <div class="production-indicator"> <loading-progress :progress="value" /> <div class="title">{{ title }}</div> <div class="info">{{ info }}</div> </div> </template>
<script> export default { props: { value: { type: Number, required: true, }, title: String, info: [String, Number], }, } </script>
computed: { length () { return this.measures.length ...Read now
Unlock full access