title | date | author | gravatar | hidden | |
---|---|---|---|---|---|
Vue 3 将成为新的默认版本 |
2022-01-20 |
尤雨溪 |
eca93da2c67aadafe35d477aa8f454b8 |
@youyuxi |
true |
划重点:Vue 3 将在 2022 年 2 月 7 日成为新的默认版本!
var https = require('https'), | |
user = process.argv[2], | |
opts = parseOpts(process.argv.slice(3)) | |
request('/users/' + user, function (res) { | |
if (!res.public_repos) { | |
console.log(res.message) | |
return | |
} | |
var pages = Math.ceil(res.public_repos / 100), |
<div id="app"> | |
<button id="reset">reset</button> | |
<button id="outer">no leak</button> | |
<div id="container"> | |
<button id="inner">leak</button> | |
<span>1</span> | |
<span>2</span> | |
<span>3</span> | |
<span>4</span> | |
<span>5</span> |
title | date | author | gravatar | hidden | |
---|---|---|---|---|---|
Vue 3 将成为新的默认版本 |
2022-01-20 |
尤雨溪 |
eca93da2c67aadafe35d477aa8f454b8 |
@youyuxi |
true |
划重点:Vue 3 将在 2022 年 2 月 7 日成为新的默认版本!
// This requires the WIP branch at https://github.com/vuejs/vue-loader/tree/next | |
const path = require('path') | |
const { VueLoaderPlugin } = require('vue-loader') | |
module.exports = { | |
mode: 'development', | |
entry: path.resolve(__dirname, './main.js'), | |
output: { | |
path: path.resolve(__dirname, 'dist') |
alias ng="npm list -g --depth=0 2>/dev/null" | |
alias nl="npm list --depth=0 2>/dev/null" |
This is the aggregated changelog for 3.4 that includes changes landed in all alpha and beta pre-releases. For changelog of individual pre-releases, please check here.
<!DOCTYPE html> | |
<html> | |
<head> | |
<title></title> | |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> | |
<script> | |
// coolshell api | |
function xss_ajax(url, callback) { | |
var script_id = null; | |
var script = document.createElement('script'); |
Note: this file is temporary - the main CHANGELOG.md
is currently not viewable due to a GitHub bug. We will update all links to the main changelog once the bug is resolved.
// example vite.config.js | |
import { cdn } from './vite-plugin-cdn' | |
export default { | |
plugins: [ | |
// also supported: esm.run, jspm | |
// loads the dep over the CDN during dev | |
// auto downloads and includes into the bundle during build | |
cdn('skypack', { | |
vue: '^3.0.5' |