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
Firearms > Handguns > Over & Unders, 1 | |
Firearms > Handguns > Revolvers, 1 | |
Firearms > Handguns > Semi-Automatics, 1 | |
Firearms > Handguns > Single Shots, 1 | |
Firearms > Rifles > Bolt Actions, 1 | |
Firearms > Rifles > Falling Blocks, 1 | |
Firearms > Rifles > Lever Actions, 1 | |
Firearms > Rifles > Martinis, 1 | |
Firearms > Rifles > Moderatos, 1 | |
Firearms > Rifles > Over & Unders, 1 |
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 dark toolbar> | |
<template v-if="!$route.meta.public"> | |
<v-navigation-drawer fixed clipped v-model="drawer" app> | |
<template v-for="item in menu"> | |
<h3 class="ml-3 mt-3">{{item.title}}</h3> | |
<v-divider></v-divider> | |
<v-list> | |
<v-list-tile v-for="(link, i) in item.links" :key="i" @click="$router.push(link.href)"> | |
<v-list-tile-action> |
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
axios.put(this.apiBaseEndpoint + '/' + id, input) | |
.then((response) => { | |
// Success | |
}) | |
.catch((error) => { | |
// Error | |
if (error.response) { | |
// The request was made and the server responded with a status code | |
// that falls out of the range of 2xx | |
// console.log(error.response.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
#requires -version 2.0 | |
[CmdletBinding()] | |
param ( | |
[parameter(Mandatory=$true)] | |
[ValidateScript({ Test-Path -Path $_ -PathType Leaf })] | |
[string] | |
$Path | |
) | |
$ErrorActionPreference = 'Stop' |