#まず見るべき
以下のURLは、常に更新されているコンテンツです。
- ドキュメント日本語版
- 日本語版ドキュメントはVue.js日本語コミュニティによって常に更新されています。ミスがあれば、是非jp.vuejs.orgまでプルリクエストを頂けると助かります。
- 質問や議論は日本語コミュニティのSlackが活発です。
- はじめに読むものとしては、下記のコンテンツが良いでしょう。
- 概要
| * For Loopがぶっ壊れてる | |
| * Serialiseがダメ | |
| * haxenパッケージ実装する気あるの? | |
| * enumのpublicいらん | |
| * enumの要素末尾に;が抜けててエラーになる | |
| * caseのbreakいらん | |
| # Make sure using latest Homebrew | |
| brew update | |
| # Update already-installed formula (takes too much time, I will do it manually later) | |
| # upgrade | |
| # Add Repository | |
| brew tap homebrew/versions || erue | |
| brew tap caskroom/cask | |
| brew tap homebrew/binary || true |
| sudo apt update | |
| sudo apt install build-essential | |
| curl -kL git.io/nodebrew | perl - setup | |
| echo 'export PATH=$HOME/.nodebrew/current/bin:$PATH' >> ~/.bash_profile | |
| source ~/.bash_profile | |
| nodebrew install-binary stable | |
| nodebrew use stable | |
| curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add - | |
| echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list | |
| sudo apt-get install yarn |
| git clone git://github.com/amix/vimrc.git ~/.vim_runtime | |
| sh ~/.vim_runtime/install_awesome_vimrc.sh | |
| echo ":set encoding=utf-8" >> ~/.vimrc | |
| echo ":set fileencodings=iso-2022-jp,euc-jp,sjis,utf-8" >> ~/.vimrc | |
| echo ":set fileformats=unix,dos,mac" >> ~/.vimrc |
| ## Directory-based project format | |
| .idea/workspace.xml | |
| .idea/tasks.xml | |
| # and these sensitive or high-churn files: | |
| .idea/dataSources.ids | |
| .idea/dataSources.xml | |
| .idea/sqlDataSources.xml | |
| .idea/dynamic.xml | |
| ## File-based project format |
| //Original : https://gist.github.com/daichan4649/8877801#file-convertsheet2jsontext-gs | |
| //2015/01/28 add SetUp method | |
| function doGet(e) { | |
| var book = SpreadsheetApp.openById(PropertiesService.getScriptProperties().getProperty('active')); | |
| var sheet = book.getSheets[0]; | |
| var json = convertSheet2JsonText(sheet); | |
| return ContentService.createTextOutput(JSON.stringify(json)).setMimeType(ContentService.MimeType.JSON); | |
| } |
#まず見るべき
以下のURLは、常に更新されているコンテンツです。
{
"build-js": "browserify browser/main.js | uglifyjs -mc > static/bundle.js",
"build-css": "cat static/pages/*.css tabs/*/*.css",
"build": "npm run build-js && npm run build-css",
"watch-js": "watchify browser/main.js -o static/bundle.js -dv",
"watch-css": "catw static/pages/*.css tabs/*/*.css -o static/bundle.css -v",
"watch": "npm run watch-js & npm run watch-css",| <preference name="StatusBarOverlaysWebView" value="false" /> | |
| <preference name="DisallowOverscroll" value="true" /> | |
| <preference name="target-device" value="tablet" /> | |
| <preference name="webviewbounce" value="false" /> | |
| <preference name="ios-statusbarstyle" value="black-opaque" /> | |
| <gap:plugin name="org.apache.cordova.device" /> |