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
> npm --version | |
6.1.0 |
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
> npm | |
Usage: npm <command> | |
where <command> is one of: | |
access, adduser, audit, bin, bugs, c, cache, ci, cit, | |
completion, config, create, ddp, dedupe, deprecate, | |
dist-tag, docs, doctor, edit, explore, get, help, | |
help-search, hook, i, init, install, install-test, it, link, | |
list, ln, login, logout, ls, outdated, owner, pack, ping, |
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
>vue create example | |
Vue CLI v3.0.1 | |
? Please pick a preset: Manually select features | |
? Check the features needed for your project: Babel, Linter | |
? Pick a linter / formatter config: Prettier | |
? Pick additional lint features: Lint on save | |
? Where do you prefer placing config for Babel, PostCSS, ESLint, etc.? In package.json | |
? Save this as a preset for future projects? No |
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
>vue | |
Usage: vue <command> [options] | |
Options: | |
-V, --version output the version number | |
-h, --help output usage information | |
Commands: |
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
>vue --version | |
3.0.1 |
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
>npm install -g @vue/cli | |
C:\Users\komazec\AppData\Roaming\npm\vue -> C:\Users\komazec\AppData\Roaming\npm\node_modules\@vue\cli\bin\vue.js | |
> [email protected] postinstall C:\Users\komazec\AppData\Roaming\npm\node_modules\@vue\cli\node_modules\protobufjs | |
> node scripts/postinstall | |
> [email protected] postinstall C:\Users\komazec\AppData\Roaming\npm\node_modules\@vue\cli\node_modules\nodemon | |
> node bin/postinstall || exit 0 |
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
<html> | |
<body> | |
<div id="example"> | |
<p>{{ hello }}</p> | |
</div> | |
<script src="https://unpkg.com/vue"></script> | |
<script> | |
let vm = new Vue({ | |
el: '#example', | |
data: { hello: 'Hello World!'} |
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
<html> | |
<body> | |
<div id="example"> | |
<p>{{ hello }}</p> | |
</div> | |
<script src="https://unpkg.com/vue"></script> | |
<script> | |
new Vue({ | |
el: '#example', | |
data: { hello: 'Hello World!'} |
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
#include <stdafx.h> | |
... | |
// tray icon ID | |
#define ID_SYSTEMTRAY 0x1000 | |
// custom message ID | |
#define WM_TRAYICON_EVENT (WM_APP + 1) | |
// tray icon resource ID |
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
$ cat Demo.csproj | |
<Project Sdk="Microsoft.NET.Sdk"> | |
<PropertyGroup> | |
<OutputType>Exe</OutputType> | |
<TargetFramework>netcoreapp1.1</TargetFramework> | |
</PropertyGroup> | |
<ItemGroup> | |
<PackageReference Include="Newtonsoft.Json" Version="10.0.2" /> | |
</ItemGroup> |