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
import Vue from 'vue' | |
import Router from './services/router' | |
import Store from './services/store' | |
import App from './App.vue' | |
new Vue({ // eslint-disable-line no-new | |
el: '#app', | |
template: '<App/>', | |
router: Router, | |
store: Store, |
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> | |
<canvas class="gridCanvas" | |
:width="width" | |
:height="height" | |
></canvas> | |
</template> | |
<script> | |
export default { | |
name: 'xon-GridCanvas', |
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
# Introduction | |
Write-Host "------------------------------------------------" -ForegroundColor Green | |
Write-Host " Dropbox Desync." -ForegroundColor Yellow | |
Write-Host "------------------------------------------------" -ForegroundColor Green | |
# Target File/Folder | |
Write-Host "Enter the path to the folder/file you want to desync." -ForegroundColor DarkGray | |
Write-Host "Default: $PSScriptRoot" -ForegroundColor DarkGray | |
$target = Read-Host -Prompt "Enter path to desync (default)" | |
# Set current directory if none |