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
/* | |
__ _____ _____ _____ | |
__| | __| | | | JSON for Modern C++ | |
| | |__ | | | | | | version 2.0.10 | |
|_____|_____|_____|_|___| https://github.com/nlohmann/json | |
Licensed under the MIT License <http://opensource.org/licenses/MIT>. | |
Copyright (c) 2013-2017 Niels Lohmann <http://nlohmann.me>. | |
Permission is hereby granted, free of charge, to any person obtaining a copy |
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
#! /bin/bash | |
PB_VERSION=2.5.0 | |
wget https://github.com/google/protobuf/releases/download/v$PB_VERSION/protobuf-$PB_VERSION.tar.gz | |
tar xzf protobuf-$PB_VERSION.tar.gz | |
cd protobuf-$PB_VERSION | |
sudo apt-get update | |
sudo apt-get install build-essential | |
sudo ./configure |
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 storeModule from './store-module'; | |
export default async ({ Vue, router, store }) => { | |
Vue.use(storeModule, router, store, { | |
preserveState: preserveState | |
}); | |
} |