https://vuejs.org/v2/cookbook/debugging-in-vscode.html
- Add
preLaunchTask
to launch config - Add
problemMatcher
fornpm: serve
task
https://vuejs.org/v2/cookbook/debugging-in-vscode.html
preLaunchTask
to launch configproblemMatcher
for npm: serve
taskimport { NestedRouteView } from '@soramitsukhmer/vuetify-plugin' | |
export default { | |
path: 'sessions', | |
meta: { | |
title: 'Session', | |
breadcrumb: { | |
text: 'Session' | |
} | |
}, |
code --install-extension EditorConfig.EditorConfig | |
code --install-extension dbaeumer.vscode-eslint | |
code --install-extension esbenp.prettier-vscode | |
code --install-extension octref.vetur | |
code --install-extension wix.vscode-import-cost |
Example
execute(() => {
const uint = new Uint8ClampedArray(32)
const random = crypto.getRandomValues(uint)
return random
})
// Return Uint8ClampedArray(32) value
/** | |
* Get a random large number | |
*/ | |
export const getRandomNumber = () => parseInt((Math.random() + "").split('.')[1]) | |
/** | |
* Get random string identifier | |
*/ | |
export const getRandomString = () => getRandomNumber().toString(36) |
const pedestrianStates = { | |
initial: 'walk', | |
states: { | |
walk: { | |
on: { | |
PED_TIMER: 'wait' | |
} | |
}, | |
wait: { | |
on: { |
#include "Dactyl.h" | |
#include "action_layer.h" | |
#include "eeconfig.h" | |
extern keymap_config_t keymap_config; | |
#define _QWERTY 0 | |
#define _NUMLAYER 1 | |
enum custom_keycodes { | |
QWERTY, | |
NUMLAYER |