]> git.ipfire.org Git - thirdparty/vuejs/core.git/log
thirdparty/vuejs/core.git
6 years agorefactor: use early return style in v-for
Evan You [Thu, 10 Oct 2019 02:31:27 +0000 (22:31 -0400)] 
refactor: use early return style in v-for

6 years agochore: update readme status
Evan You [Wed, 9 Oct 2019 21:34:22 +0000 (17:34 -0400)] 
chore: update readme status

6 years agofeat: v-once
Evan You [Wed, 9 Oct 2019 21:32:58 +0000 (17:32 -0400)] 
feat: v-once

Note: only compiler transform is tested - integration with runtime
still needs to be tested.

6 years agofeat(compiler): implement support for v-pre
Evan You [Wed, 9 Oct 2019 20:00:08 +0000 (16:00 -0400)] 
feat(compiler): implement support for v-pre

6 years agofeat(runtime-dom): support event options (#149)
Stanislav Lashmanov [Wed, 9 Oct 2019 19:05:21 +0000 (22:05 +0300)] 
feat(runtime-dom): support event options (#149)

6 years agochore: format globals whitelist
Evan You [Wed, 9 Oct 2019 18:16:11 +0000 (14:16 -0400)] 
chore: format globals whitelist

6 years agofix: add warnings (#82)
Tim van den Eijnden [Wed, 9 Oct 2019 18:03:21 +0000 (20:03 +0200)] 
fix: add warnings (#82)

* fix: add warnings

- invalid watch handler path
- attempting to mutate readonly computed value
- attempt of mutating public property
- attempt of mutating prop

* fix: more descriptive warnings + details

* fix: test apiOptions warnings

* fix: update warning in componentProxy

* fix: update warnings in componentProxy & apiOptions

* fix: update warning in componentProxy

* fix: implemented tests for componentProxy

* fix: remove comment + small refactor

6 years agotype: improve typing (#177)
扩散性百万甜面包 [Wed, 9 Oct 2019 18:01:53 +0000 (02:01 +0800)] 
type: improve typing (#177)

6 years agorefactor(reactivity): use NOOP for readonly computed setter in production
Evan You [Wed, 9 Oct 2019 16:22:08 +0000 (12:22 -0400)] 
refactor(reactivity): use NOOP for readonly computed setter in production

6 years agofeat(computed): warn if trying to set a readonly computed (#161)
Dmitry Sharshakov [Wed, 9 Oct 2019 16:20:53 +0000 (19:20 +0300)] 
feat(computed): warn if trying to set a readonly computed (#161)

6 years agotypes(runtime-core): simplify types in createComponentInstance() (#170)
terencez [Wed, 9 Oct 2019 16:17:42 +0000 (00:17 +0800)] 
types(runtime-core): simplify types in createComponentInstance() (#170)

6 years agorefactor(reactivity): prefer to use effect symbol and add isEffect() (#169)
terencez [Wed, 9 Oct 2019 16:16:29 +0000 (00:16 +0800)] 
refactor(reactivity): prefer to use effect symbol and add isEffect() (#169)

6 years agochore: add the yarn error log file to git ignore (#150)
碎碎酱 [Wed, 9 Oct 2019 16:13:54 +0000 (00:13 +0800)] 
chore: add the yarn error log file to git ignore (#150)

6 years agofix(reactivity): avoid triggering effect when deleting property returns false (#168)
terencez [Wed, 9 Oct 2019 15:55:57 +0000 (23:55 +0800)] 
fix(reactivity): avoid triggering effect when deleting property returns false (#168)

6 years agorefactor(reactivity): use function isSymbol instead of typeof (#155)
Cr [Wed, 9 Oct 2019 15:49:23 +0000 (23:49 +0800)] 
refactor(reactivity): use function isSymbol instead of typeof (#155)

6 years agotypes: fix error inference for public compile method
Evan You [Wed, 9 Oct 2019 15:30:56 +0000 (11:30 -0400)] 
types: fix error inference for public compile method

6 years agorefactor(shared): use Array literal instead of split for global whitelist Set creatio...
蓝色的秋风 [Wed, 9 Oct 2019 15:28:52 +0000 (23:28 +0800)] 
refactor(shared): use Array literal instead of split for global whitelist Set creation (#173)

6 years agofeat(compiler): v-text transform + move dom-specific errros codes to compiler-dom
Evan You [Wed, 9 Oct 2019 15:13:13 +0000 (11:13 -0400)] 
feat(compiler): v-text transform + move dom-specific errros codes to compiler-dom

6 years agofeat(compiler-dom): v-cloak transform (#141)
Adam Dorling [Wed, 9 Oct 2019 14:41:31 +0000 (15:41 +0100)] 
feat(compiler-dom): v-cloak transform (#141)

6 years agotest(vnode): partial tests for vnode creation (#116)
Tim van den Eijnden [Wed, 9 Oct 2019 14:28:43 +0000 (16:28 +0200)] 
test(vnode): partial tests for vnode creation (#116)

6 years agorefactor(compiler-core): use directive name in error code identifier (#163)
Rahul Kadyan [Wed, 9 Oct 2019 14:27:24 +0000 (19:57 +0530)] 
refactor(compiler-core): use directive name in error code identifier (#163)

6 years agoworkflow: make template-explorer error tolerant
Evan You [Tue, 8 Oct 2019 21:31:22 +0000 (17:31 -0400)] 
workflow: make template-explorer error tolerant

6 years agorefactor(compiler): flush transform onExit in reverse
Evan You [Tue, 8 Oct 2019 20:53:26 +0000 (16:53 -0400)] 
refactor(compiler): flush transform onExit in reverse

6 years agochore: remove unnecessary type cast
Evan You [Tue, 8 Oct 2019 19:58:35 +0000 (15:58 -0400)] 
chore: remove unnecessary type cast

6 years agofeat(compiler-dom): transform for v-html
Evan You [Tue, 8 Oct 2019 19:35:57 +0000 (15:35 -0400)] 
feat(compiler-dom): transform for v-html

6 years agochore(jest): ignore node_modules from watched files (#162)
Rahul Kadyan [Tue, 8 Oct 2019 18:37:31 +0000 (00:07 +0530)] 
chore(jest): ignore node_modules from watched files (#162)

`jest --watch` fails with open file limit reached:

6 years agotypes: improve type 'ReactiveEffect' with generics (#99)
扩散性百万甜面包 [Tue, 8 Oct 2019 17:48:13 +0000 (01:48 +0800)] 
types: improve type 'ReactiveEffect' with generics (#99)

6 years agotypes: improve typing
Evan You [Tue, 8 Oct 2019 16:43:13 +0000 (12:43 -0400)] 
types: improve typing

6 years agotypes: move scopeIds into PrefixMeta
Evan You [Tue, 8 Oct 2019 16:09:22 +0000 (12:09 -0400)] 
types: move scopeIds into PrefixMeta

6 years agotest: test expression transform for reserved literals
Evan You [Tue, 8 Oct 2019 15:27:48 +0000 (11:27 -0400)] 
test: test expression transform for reserved literals

6 years agofix(compiler): should not prefix reserved literals (close #142)
Evan You [Tue, 8 Oct 2019 15:25:24 +0000 (11:25 -0400)] 
fix(compiler): should not prefix reserved literals (close #142)

6 years agobuild: sepecify yarn in lerna config (#154)
meteorlxy [Tue, 8 Oct 2019 15:01:04 +0000 (23:01 +0800)] 
build: sepecify yarn in lerna config (#154)

6 years agotest(reactivity): check for key in entries iteration (#152)
夜宴 [Tue, 8 Oct 2019 15:00:20 +0000 (10:00 -0500)] 
test(reactivity): check for key in entries iteration (#152)

6 years agofix(compiler): handle block nodes with custom directives + improve ast types
Evan You [Tue, 8 Oct 2019 14:50:00 +0000 (10:50 -0400)] 
fix(compiler): handle block nodes with custom directives + improve ast types

6 years agotypes: improve typing
Evan You [Tue, 8 Oct 2019 13:26:09 +0000 (09:26 -0400)] 
types: improve typing

6 years agotypes: improve type for WatchHandler (#160)
扩散性百万甜面包 [Tue, 8 Oct 2019 14:48:24 +0000 (22:48 +0800)] 
types: improve type for WatchHandler (#160)

6 years agobuild(deps-dev): bump lerna from 3.16.4 to 3.16.5
dependabot-preview[bot] [Tue, 8 Oct 2019 09:41:52 +0000 (09:41 +0000)] 
build(deps-dev): bump lerna from 3.16.4 to 3.16.5

Bumps [lerna](https://github.com/lerna/lerna/tree/HEAD/core/lerna) from 3.16.4 to 3.16.5.
- [Release notes](https://github.com/lerna/lerna/releases)
- [Changelog](https://github.com/lerna/lerna/blob/master/core/lerna/CHANGELOG.md)
- [Commits](https://github.com/lerna/lerna/commits/v3.16.5/core/lerna)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
6 years agobuild(deps-dev): bump lint-staged from 9.4.1 to 9.4.2
dependabot-preview[bot] [Tue, 8 Oct 2019 09:41:24 +0000 (09:41 +0000)] 
build(deps-dev): bump lint-staged from 9.4.1 to 9.4.2

Bumps [lint-staged](https://github.com/okonet/lint-staged) from 9.4.1 to 9.4.2.
- [Release notes](https://github.com/okonet/lint-staged/releases)
- [Commits](https://github.com/okonet/lint-staged/compare/v9.4.1...v9.4.2)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
6 years agotest: tests for hoistStatic
Evan You [Mon, 7 Oct 2019 21:12:22 +0000 (17:12 -0400)] 
test: tests for hoistStatic

6 years agorefactor: give runtimeHelper symbols more readable names during dev
Evan You [Mon, 7 Oct 2019 17:32:29 +0000 (13:32 -0400)] 
refactor: give runtimeHelper symbols more readable names during dev

6 years agofix(compiler/v-if): avoid incorrect transform application on v-else/else-if branch...
Evan You [Mon, 7 Oct 2019 16:48:43 +0000 (12:48 -0400)] 
fix(compiler/v-if): avoid incorrect transform application on v-else/else-if branch children

6 years agorefactor(runtime-dom/events): use more explicit variable name to avoid shadowing
Evan You [Mon, 7 Oct 2019 14:57:35 +0000 (10:57 -0400)] 
refactor(runtime-dom/events): use more explicit variable name to avoid shadowing

6 years agofix(runtime-dom/events): fix wrong scope for event value (#117)
Stanislav Lashmanov [Mon, 7 Oct 2019 14:56:24 +0000 (17:56 +0300)] 
fix(runtime-dom/events): fix wrong scope for event value (#117)

6 years agobuild(deps-dev): bump execa from 2.0.4 to 2.0.5
dependabot-preview[bot] [Mon, 7 Oct 2019 07:55:50 +0000 (07:55 +0000)] 
build(deps-dev): bump execa from 2.0.4 to 2.0.5

Bumps [execa](https://github.com/sindresorhus/execa) from 2.0.4 to 2.0.5.
- [Release notes](https://github.com/sindresorhus/execa/releases)
- [Commits](https://github.com/sindresorhus/execa/compare/v2.0.4...v2.0.5)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
6 years agobuild(deps-dev): bump rollup from 1.23.0 to 1.23.1
dependabot-preview[bot] [Mon, 7 Oct 2019 07:55:44 +0000 (07:55 +0000)] 
build(deps-dev): bump rollup from 1.23.0 to 1.23.1

Bumps [rollup](https://github.com/rollup/rollup) from 1.23.0 to 1.23.1.
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rollup/rollup/compare/v1.23.0...v1.23.1)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
6 years agobuild(deps-dev): bump @microsoft/api-extractor from 7.4.7 to 7.5.0
dependabot-preview[bot] [Mon, 7 Oct 2019 07:55:35 +0000 (07:55 +0000)] 
build(deps-dev): bump @microsoft/api-extractor from 7.4.7 to 7.5.0

Bumps [@microsoft/api-extractor](https://github.com/microsoft/rushstack) from 7.4.7 to 7.5.0.
- [Release notes](https://github.com/microsoft/rushstack/releases)
- [Commits](https://github.com/microsoft/rushstack/commits)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
6 years agotest(runtime-core): createSlots method (#119)
Kyle Hall [Mon, 7 Oct 2019 00:19:44 +0000 (19:19 -0500)] 
test(runtime-core): createSlots method (#119)

6 years agotest(reactivity): fixed small copy & paste error (#140)
Alexander Zibert [Mon, 7 Oct 2019 00:18:47 +0000 (02:18 +0200)] 
test(reactivity): fixed small copy & paste error (#140)

6 years agotypes: use recursion for unwrapping refs (#137)
Andrew / Kana [Mon, 7 Oct 2019 00:11:52 +0000 (03:11 +0300)] 
types: use recursion for unwrapping refs (#137)

6 years agoworkflow(template-explorer): improve types (#128)
月迷津渡 [Sun, 6 Oct 2019 15:55:23 +0000 (23:55 +0800)] 
workflow(template-explorer): improve types (#128)

6 years agorefactor(reactivity): change _isRef to use refSymbol as key (#124)
Carlos Rodrigues [Sun, 6 Oct 2019 15:46:09 +0000 (16:46 +0100)] 
refactor(reactivity): change _isRef to use refSymbol as key (#124)

6 years agochore: remove no longer necessary global Vue
Evan You [Sun, 6 Oct 2019 15:39:20 +0000 (11:39 -0400)] 
chore: remove no longer necessary global Vue

6 years agofix: expose Vue to compiled template (#120)
Stanislav Lashmanov [Sun, 6 Oct 2019 15:38:05 +0000 (18:38 +0300)] 
fix: expose Vue to compiled template (#120)

This removes the reliance on `Vue` being exposed as a global.

6 years agochore: fix typo in rollup.config.js (#122)
Yida [Sun, 6 Oct 2019 15:31:44 +0000 (23:31 +0800)] 
chore: fix typo in rollup.config.js (#122)

6 years agorefactor: rename param on function watch (#134)
扩散性百万甜面包 [Sun, 6 Oct 2019 15:27:09 +0000 (23:27 +0800)] 
refactor: rename param on function watch (#134)

6 years agofix(reactivity): explicitly do type conversions in warning strings (#129)
月迷津渡 [Sun, 6 Oct 2019 15:26:33 +0000 (23:26 +0800)] 
fix(reactivity): explicitly do type conversions in warning strings (#129)

6 years agotypes: cleanup some unnecessary typing in reactivity (#126)
Carlos Rodrigues [Sun, 6 Oct 2019 15:22:32 +0000 (16:22 +0100)] 
types: cleanup some unnecessary typing in reactivity  (#126)

6 years agoworkflow(template-explorer): persist compilerOptions
Evan You [Sun, 6 Oct 2019 03:29:14 +0000 (23:29 -0400)] 
workflow(template-explorer): persist compilerOptions

6 years agotest: Add tests for some runtime helpers (#87)
Jordan Pittman [Sun, 6 Oct 2019 03:22:42 +0000 (23:22 -0400)] 
test: Add tests for some runtime helpers (#87)

* test for `renderList`
* test for `toHandlers`

6 years agotest: fix import
Evan You [Sun, 6 Oct 2019 03:20:02 +0000 (23:20 -0400)] 
test: fix import

6 years agorefactor(compiler): refine codegen node types
Evan You [Sun, 6 Oct 2019 02:47:20 +0000 (22:47 -0400)] 
refactor(compiler): refine codegen node types

6 years agorefactor(compiler): use symbols for runtime helpers
Evan You [Sat, 5 Oct 2019 21:18:25 +0000 (17:18 -0400)] 
refactor(compiler): use symbols for runtime helpers

6 years agodocs: add missing --all argument to contributing.md (#121)
vityas-off [Sun, 6 Oct 2019 02:35:15 +0000 (05:35 +0300)] 
docs: add missing --all argument to contributing.md (#121)

6 years agotypes: Use unique symbol type for _isRef property of ref object (#118)
Rahul Kadyan [Sun, 6 Oct 2019 02:32:50 +0000 (08:02 +0530)] 
types: Use unique symbol type for _isRef property of ref object (#118)

6 years agorefactor: move writable check out of computed setter (#112)
扩散性百万甜面包 [Sat, 5 Oct 2019 19:48:05 +0000 (03:48 +0800)] 
refactor: move writable check out of computed setter (#112)

6 years agofeat(reactivity): use Symbol for Ref._isRef (#114)
扩散性百万甜面包 [Sat, 5 Oct 2019 19:46:36 +0000 (03:46 +0800)] 
feat(reactivity): use Symbol for Ref._isRef (#114)

6 years agofix(compiler/codegen): add simple expression node opening bracket for ConditionalExpr...
Andrey Sukhonosov [Sat, 5 Oct 2019 19:42:49 +0000 (22:42 +0300)] 
fix(compiler/codegen): add simple expression node opening bracket for ConditionalExpression (#110)

6 years agochore: fix typo (#108)
扩散性百万甜面包 [Sat, 5 Oct 2019 19:39:47 +0000 (03:39 +0800)] 
chore: fix typo (#108)

6 years agotest: improve tests and typing for runtime-core (#100)
Carlos Rodrigues [Sat, 5 Oct 2019 19:37:55 +0000 (20:37 +0100)] 
test:  improve tests and typing for runtime-core (#100)

* test: add test case for declaring Array prop type with constructor casting in `createComponent`

* test: add test case for `setup(props)` with explicit props declaration

6 years agochore: fix typos (#103)
Vladimir [Sat, 5 Oct 2019 14:48:54 +0000 (21:48 +0700)] 
chore: fix typos (#103)

6 years agochore: simplify code in apiWatch.ts (#101)
扩散性百万甜面包 [Sat, 5 Oct 2019 14:44:02 +0000 (22:44 +0800)] 
chore: simplify code in apiWatch.ts (#101)

6 years agochore: improve typings in reactivity tests (#96)
Carlos Rodrigues [Sat, 5 Oct 2019 14:39:40 +0000 (15:39 +0100)] 
chore: improve typings in reactivity tests (#96)

6 years agodocs: fix 'commit message convention' link (#95)
Swapnil Agarwal [Sat, 5 Oct 2019 14:38:42 +0000 (20:08 +0530)] 
docs: fix 'commit message convention' link (#95)

6 years agochore: replace some type casts and fix variable and filename typos (#93)
Carlos Rodrigues [Sat, 5 Oct 2019 14:38:02 +0000 (15:38 +0100)] 
chore: replace some type casts and fix variable and filename typos (#93)

6 years agochore: fix comment typos (#94)
Carlos Rodrigues [Sat, 5 Oct 2019 14:35:19 +0000 (15:35 +0100)] 
chore: fix comment typos (#94)

6 years agochore: fix typo in codegen (#92)
zrh122 [Sat, 5 Oct 2019 14:29:50 +0000 (22:29 +0800)] 
chore: fix typo in codegen (#92)

6 years agochore: fix typo in vBind.ts (#91)
taiyop [Sat, 5 Oct 2019 14:26:32 +0000 (23:26 +0900)] 
chore: fix typo in vBind.ts (#91)

6 years agochore: spelling mistake in ast.ts (#88)
夜宴 [Sat, 5 Oct 2019 14:23:25 +0000 (09:23 -0500)] 
chore: spelling mistake in ast.ts (#88)

6 years agochore: fix grammar and spelling in build.js (#84)
Ben McCallum [Sat, 5 Oct 2019 14:23:05 +0000 (16:23 +0200)] 
chore: fix grammar and spelling in build.js (#84)

6 years agotypes: improve type 'Ref' (#105)
扩散性百万甜面包 [Sat, 5 Oct 2019 14:10:37 +0000 (22:10 +0800)] 
types: improve type 'Ref' (#105)

6 years agotypes: simplify types (#104)
月迷津渡 [Sat, 5 Oct 2019 14:09:34 +0000 (22:09 +0800)] 
types: simplify types (#104)

6 years agochore: fix docs typo in vOn.ts (#86)
Reed Jones [Sat, 5 Oct 2019 03:12:49 +0000 (21:12 -0600)] 
chore: fix docs typo in vOn.ts (#86)

6 years agofix(compiler): props hoist should also work on elements w/ TEXT flag
Evan You [Sat, 5 Oct 2019 02:51:51 +0000 (22:51 -0400)] 
fix(compiler): props hoist should also work on elements w/ TEXT flag

6 years agofix: import patchFlags from @vue/shared in compiler instead
Evan You [Sat, 5 Oct 2019 02:47:09 +0000 (22:47 -0400)] 
fix: import patchFlags from @vue/shared in compiler instead

Otherwise this imports unnecessary stuff from the runtime.

6 years agoworkflow: include commit link in template explorer
Evan You [Sat, 5 Oct 2019 02:40:54 +0000 (22:40 -0400)] 
workflow: include commit link in template explorer

6 years agofix(typo): transformSlotOutlet name correction (#83)
Martin Rojo [Sat, 5 Oct 2019 02:12:51 +0000 (03:12 +0100)] 
fix(typo): transformSlotOutlet name correction (#83)

6 years agoworkflow: use CDN deps for template explorer so it can be easily deployed
Evan You [Fri, 4 Oct 2019 21:55:55 +0000 (17:55 -0400)] 
workflow: use CDN deps for template explorer so it can be easily deployed

6 years agoworkflow: improve template explorer
Evan You [Fri, 4 Oct 2019 21:43:20 +0000 (17:43 -0400)] 
workflow: improve template explorer

6 years agobuild: include main vue package in aliases and tsconfig paths
Evan You [Fri, 4 Oct 2019 21:36:26 +0000 (17:36 -0400)] 
build: include main vue package in aliases and tsconfig paths

6 years agofix(compiler): avoid hoisting components and directive calls
Evan You [Fri, 4 Oct 2019 18:34:26 +0000 (14:34 -0400)] 
fix(compiler): avoid hoisting components and directive calls

6 years agoworkflow: basic template explorer
Evan You [Fri, 4 Oct 2019 17:08:06 +0000 (13:08 -0400)] 
workflow: basic template explorer

6 years agobuild: report both gzip and brotli sizes
Evan You [Fri, 4 Oct 2019 13:57:32 +0000 (09:57 -0400)] 
build: report both gzip and brotli sizes

6 years agochore: update README
Evan You [Fri, 4 Oct 2019 13:35:29 +0000 (09:35 -0400)] 
chore: update README

6 years agobuild(deps-dev): bump rollup from 1.22.0 to 1.23.0
dependabot-preview[bot] [Fri, 4 Oct 2019 13:05:54 +0000 (13:05 +0000)] 
build(deps-dev): bump rollup from 1.22.0 to 1.23.0

Bumps [rollup](https://github.com/rollup/rollup) from 1.22.0 to 1.23.0.
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rollup/rollup/compare/v1.22.0...v1.23.0)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
6 years agobuild(deps-dev): bump @microsoft/api-extractor from 7.4.6 to 7.4.7
dependabot-preview[bot] [Fri, 4 Oct 2019 13:05:27 +0000 (13:05 +0000)] 
build(deps-dev): bump @microsoft/api-extractor from 7.4.6 to 7.4.7

Bumps [@microsoft/api-extractor](https://github.com/microsoft/rushstack) from 7.4.6 to 7.4.7.
- [Release notes](https://github.com/microsoft/rushstack/releases)
- [Commits](https://github.com/microsoft/rushstack/compare/@microsoft/gulp-core-build-typescript_v7.4.6...@microsoft/gulp-core-build-typescript_v7.4.7)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
6 years agochore: shorten option name
Evan You [Fri, 4 Oct 2019 13:03:00 +0000 (09:03 -0400)] 
chore: shorten option name

6 years agotest: fix vbind tests
Evan You [Fri, 4 Oct 2019 12:38:53 +0000 (08:38 -0400)] 
test: fix vbind tests

6 years agofix(compiler): patchFlag analysis should factor in props returned by directive transforms
Evan You [Fri, 4 Oct 2019 12:37:10 +0000 (08:37 -0400)] 
fix(compiler): patchFlag analysis should factor in props returned by directive transforms

6 years agofeat(compiler): hoist static trees
Evan You [Fri, 4 Oct 2019 03:30:25 +0000 (23:30 -0400)] 
feat(compiler): hoist static trees

6 years agofeat(compiler): v-on inline statement handling
Evan You [Thu, 3 Oct 2019 21:47:00 +0000 (17:47 -0400)] 
feat(compiler): v-on inline statement handling