This file contains 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
{ | |
"vetur.format.defaultFormatter.html": "js-beautify-html", | |
"vetur.format.defaultFormatterOptions": { | |
"js-beautify-html": { | |
"wrap_attributes": "force-aligned" | |
} | |
} | |
} |
This file contains 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
// Windows | |
a) Open a command prompt where the Plex Media Scanner.exe resides | |
// In my case - E:\Plex\Plex Media Server.exe | |
b) List out the libraries (keys) | |
"Plex Media Scanner.exe" --list | |
--list will show all libraries with an associated key | |
// 2: Films |
This file contains 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-layout row wrap> | |
<v-flex sm12> | |
<v-card dark color="secondary"> | |
<v-card-text class="px-0"> | |
<v-btn color="primary" @click="openFile()">Open File</v-btn> | |
<v-btn color="primary" @click="saveFile()">Save File</v-btn> | |
<v-flex sm6 offset-sm3> | |
<v-text-field | |
v-model="textAreaValue" |