<template>
<!--
When isLoading is true, the <div> is in the DOM, the <p> is not.
When isLoading is false, Vue will remove the <div> and add the <p> to the DOM,
at which point <MyComponent> will be created and passed the fetched data.
-->
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script setup lang="ts"> | |
// imports | |
import { groupBy, keyBy, orderBy } from 'lodash' | |
import { useFilter } from 'vuetify/lib/composables/filter' | |
// globals | |
const props = defineProps({ | |
density: { | |
type: String, | |
default: 'default', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<v-tooltip bottom> | |
<template #activator="{ on }"> | |
<v-btn | |
:color="color" | |
:elevation="elevation" | |
:fab="fab" | |
:small="small" | |
class="mx-1" | |
v-bind="$attrs" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
scheduleData = await this.epms | |
.distinct( | |
'a.JobNumber', | |
'a.EstimateNumber', | |
'a.CustAccount', | |
'a.CustName', | |
'a.CSR', | |
'a.SalesRepCode AS SalesRep', | |
'a.Estimator', | |
'a.JobDescription', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
General Info | |
what do we use to determine to be acceptable feature? | |
Default Checklist: | |
* make sure its functionally good and not breaking other things | |
* make sure theres an updated test | |
* make sure documentation is updated (if needed) | |
* e2e (when rolled out) | |
Pull Requests |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<v-app class="panes"> | |
<div class="left"> | |
<v-select | |
:items="typeOptions" | |
v-model="type" | |
label="Type" | |
/> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Legend | |
> Folder | |
- file | |
* note | |
Folder Structures | |
> scss | |
> base | |
* resets, global defaults | |
> components |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<v-flex> | |
<v-subheader>{{header}}</v-subheader> | |
<v-list class="cardContainer"> | |
<v-list-tile | |
v-for="(item, i) in from" | |
:key="i" | |
@click="moveItem(to, from, item)" | |
> | |
<v-list-tile-title v-text="item[textKey]"></v-list-tile-title> |