repository
stringclasses
156 values
issue title
stringlengths
1
1.01k
labels
stringclasses
8 values
body
stringlengths
1
270k
vuejscore
unable to unset a form prop on a button with null value
Bug
version 3 0 4 reproduction link step to reproduce run the fiddle above check the console see an error what be expect form attribute be be unset successfully what be actually happen console warning fail set prop form on value...
vuejscore
add to this option compute during beforecreate only work if compute be already define on component
Bug
version 3 0 4 reproduction link step to reproduce create a component app with a mixin that add to this option compute js const mixin beforecreate if this option compute this option compute this opti...
vuejscore
fix compiler core should add the dev root fragment flag to v if branch
Bug
close 2780
vuejscore
html comment between component root element prevent apply class to element after comment
Bug
version 3 0 4 reproduction link step to reproduce try to remove comment between divs in helloworld component and result html will differ text I also want to be bold will become bold what be expect class should be pass to the root element in both case second co...
vuejscore
view isn t update in a weird case combination of many factor transition injection compute
Bug
version 3 0 4 reproduction link image step to reproduce follow the link although the case seem not that minimal I can t figure out a small one any small change may make the demo work as expect what be expect after the button be click it should disappear ...
vuejscore
transition effect of v show leave be not work in some case
Bug
version 3 0 4 reproduction link step to reproduce when to watch and use transition reference datum the transition effect of v show leave be not work it work well when use as v if it work well if the code use as v if be present together case where comment be remove fro...
vuejscore
fix runtime core instancewatch should pass this proxy to source as the first argument
Bug
close 2731
vuejscore
toref function return type get a union of ref
Bug
version 3 0 4 reproduction link about blank about blank step to reproduce interface state somevalue string number string number const state reactive somevalue 0 const somevalueref toref state somevalue what...
vuejscore
inconstant attr inheritance behavior in production and development again
Bug
version 3 0 4 reproduction link image problem state in be solve however the behavior isn t correct in other case step to reproduce follow the link npx vite dev npx vite build prod then serve the dist what be expect constant behavior ...
vuejscore
script setup sometimes generate invalid code when use defineemit and defineprop
Bug
version 3 0 4 reproduction link step to reproduce just run the repro with npm run dev what be expect compiler should generate valid code what be actually happen code fail with syntax error the problem be in this line from output javascript import ...
vuejscore
template compile will generate useless createvnode import when the component can be statically optimize
Bug
version 3 0 4 reproduction link 7b 22src 22 3a 22 3ctemplate 3e 5cn 20 20 3ctemplate 20v if 3d 5c 22column render 5c 22 3e 5cn 20 20 20 20 3crender 20 3arender 3d 5c 22 20 3d 3e 20column render row 2c 20index 5c 22 20 2f 3e 5cn 20 20 3c 2ftemplate 3e 5cn 20 20 3ctemplate 20v else 3e 5cn 20 20 2...
vuejscore
errorcapture not trigger by error in async setup during ssr
Bug
version 3 0 4 reproduction link step to reproduce js const createssrapp definecomponent require vue const rendertostre require vue server renderer const child definecomponent name child1 setup some error ...
vuejscore
script setup ref import from a vue file doesn t work after build
Bug
version 3 0 4 reproduction link step to reproduce create a fresh vitejs app helloworld vue app vue what be expect the value should be true false what be actually happen after build the ref variable output a weird value...
vuejscore
attribute with a false value still be add to the dom
Bug
version 3 0 4 reproduction link step to reproduce datum javascript datum return valuea false valueb true valuec null template html list item a false list item b true list item c ...
vuejscore
this be no long pass for the first argument of this watch
Bug
version 3 0 4 reproduction link vue 2 vue 3 by skirtle code at step to reproduce the first argument exporfn of this watch and vue watch couldn t receive the first argument vm which equal to this any more what be expect add the firs...
vuejscore
fix compiler sfc removespecifi issue when remove initial import script setup
Bug
fix an issue with removespecifi in compilerscript ts when there be several initial import remove ts import defineprop defineemit ref from vue be be compile to ts import ref from vue add a test case in compilescript spec ts
vuejscore
datum property read in prop watch treat as a rendering dependency
Bug
version 3 0 4 reproduction link step to reproduce 1 click button 1 2 click button 2 3 note the logging what be expect click button 2 should not cause anything to be log what be actually happen click button 2 be log a message indic...
vuejscore
can not use v for in the slot
Bug
version 3 0 4 reproduction link step to reproduce when use v for in the slot if the initial list object an error will be report directly in the subsequent push what be expect correctly perform responsive rendering what be actually happen unhandle...
vuejscore
flip animation not apply when first item splice
Bug
version 3 0 4 reproduction link work vs broke step to reproduce list move transition that s at this link change the remove method to match js this item splice 0 1 what be expect the first item in the array be remove and an animatio...
vuejscore
script setup ref import from a vue file doesn t seem to update when use in anothr component s template
Bug
version 3 0 3 reproduction link step to reproduce yarn yarn dev open browser and click the button what be expect othercomponentref and othercomponentreactive both change or not what be actually happen othercomponentreactive work fine other...
vuejscore
true value and false value be ignore on initial render
Bug
version 3 0 3 reproduction link step to reproduce what be expect checkbox expect to be check since model be false and true value false what be actually happen checkbox be not check on first render after you click it once it actuall...
vuejscore
img tag attribute width height render with 0 value when null undefined specify
Bug
version 3 0 3 reproduction link step to reproduce insert an image via the img tag and specify width or height as null or undefined what be expect attribute width and height have not be render accord with the vue 3 documentation attribute what be actuall...
vuejscore
can t access ref correctly if component be import by defineasynccomponent
Bug
version 3 0 3 reproduction link step to reproduce 1 import component by use defineasynccomponent for example component item 2 define ref in template for example 3 access ref in manual event callback like click 4 access funcion in component item ...
vuejscore
fix runtime core optimization the logic of set prop close 2651
Bug
close 2651 if app mixin call app mixin will be it will become prop after normalizepropsoption call
vuejscore
teleport to svg element fail to render
Bug
version 3 0 2 reproduction link step to reproduce 1 create an svg element 2 try to teleport an element e g circle into the svg element what be expect the circle be render inside the svg element what be actually happen the circle be not render ...
vuejscore
mixin trigger an emitted event warn
Bug
version 3 0 2 reproduction link step to reproduce 1 click the button note the warning 2 remove the line app mixin and re run the fiddle 3 click the button no long trigger a warning what be expect no warning even with the mixin what be actu...
vuejscore
component api provide doesn t support symbol
Bug
version 3 0 2 reproduction link bug reproduction on codepen step to reproduce try provide a symbol it will not inject what be expect for the symbol provide to work especially because use provide in setup and app provide support symbol provide and ...
vuejscore
null event crash when call
Bug
version 3 0 2 reproduction link step to reproduce compiler optimization cachehandler change the behavior of the link fiddle basically without the optimization you can bind null as an event handler and everything work fine I e nothing happen when event be call i...
vuejscore
transition component do not work with leave from
Bug
version 3 0 2 reproduction link step to reproduce what be expect when trigger leave the font color should translate from red to default what be actually happen 1 property in class leave from not work 2 the class leave from affect the normal o...
vuejscore
v show conflict with string base style bind
Bug
version 3 0 2 reproduction link step to reproduce click change style string button in the pen what be expect the red div be not expect to show under any circumstance since it s v show be set to false what be actually happen update the reactive style str...
vuejscore
lang on a html tag produce vuecompilererror invalid end tag
Bug
version 16 0 0 rc 0 reproduction link step to reproduce clone my repro project yarn and yarn webpack template what be expect compilation succeed what be actually happen error in src test vue module error from node mod...
vuejscore
handler depend on outer scope s value in nest slot be not update
Bug
version 3 0 2 reproduction link step to reproduce image 1 remove at key 1 image 2 create at key 2 image what be expect the insert item should be place after key 2 image what be actually happen it be place after key ...
vuejscore
fragment dynamic component with table keep table element in dom in production mode
Bug
version 3 0 2 reproduction link step to reproduce yarn build serve the fist folder prod like click on table button click on index button what be expect the table should disappear what be actually happen it stay when go back to index c...
vuejscore
keepalive include property bind responsive datum keepalive include
Bug
version 3 0 2 reproduction link step to reproduce the link be the github address you need to perform the follow step to run the project 1 npm install 2 npm run dev the project run enter the a component click the to two button to enter the b component in compone...
vuejscore
inconstant inheritattrs behavior in production and development
Bug
version 3 0 2 reproduction link step to reproduce 1 npm run dev image 2 npm run build then serve dist image what be expect I m not sure which be expect by vue I expect the dev behavior what be actually happen behavior be inco...
vuejscore
warn extraneous non emit event listener show up even when emit be set
Bug
version 3 0 2 reproduction link step to reproduce create a fragment component with setup as render function then define a custom event listen to the custom event warning should pop up in the console when load the fragment component e g an input component as ch...
vuejscore
slot with dynamic name attribute do not update content
Bug
version 3 0 2 reproduction link step to reproduce go to and click the tab what be expect the content of tab vue s slot should change what be actually happen the content of the first tab display but never change I have the same code in a vue 2...
vuejscore
collection add set expose raw target
Bug
version 3 0 2 reproduction link step to reproduce call set add or map set those method be specify to return the collection itself so they can be chain set add 1 add 2 add 3 what be expect those method should return the reactive collection so that ...
vuejscore
datum read in watch be treat as a rendering dependency
Bug
version 3 0 2 reproduction link step to reproduce 1 click button 1 note the logging the root component have update unnecessarily if you click button 1 again nothing will happen 2 click button 2 both the root and child component will update that be expect 3...
vuejscore
use bundler build with compiler vue esm bundler js with webpack in production mode include babel parser in final bundle
Bug
version 3 0 2 reproduction link step to reproduce 1 create new project with vue cli select vue 3 preset 2 modify build command in package json by add report 3 create vue config js and enable runtime compilation runtimecompiler true which swi...
vuejscore
rendertostre render fragment instead of tag provide as prop to transitiongroup
Bug
version 3 0 2 reproduction link step to reproduce 1 clone git repo and run server js 2 browse localhost 8080 probably the most basic vue ssr app the world have ever see I hope it s enough of a reproduction to see the problem I encounter instead of run the server ...
vuejscore
readonly a b c include track dependency even though array be nonreactive
Bug
version 3 0 2 reproduction link step to reproduce readonly a b c collect by dependency what be expect a b c should not be collect by dependency what be actually happen a b c collect by dependency
vuejscore
kebab case prop on slot be not transform to camelcase
Bug
version 3 0 2 reproduction link step to reproduce open and you ll see that
vuejscore
be break flicker when toggle really fast spam click a button to toggle
Bug
version 3 0 2 reproduction link step to reproduce spam click the show overlay button what be expect the fade transition should smoothly toggle between opacity 0 and opacity 1 no matter how fast you click what be actually happen the fade transition con...
vuejscore
fallback slot content not render in nest component with slot
Bug
version 3 0 2 reproduction link step to reproduce follow the link image in vue2 it work image what be expect fallback content of inner be show what be actually happen not display
vuejscore
parent doesn t skip transition component
Bug
version 3 0 1 reproduction link step to reproduce 1 open the production link 2 watch the console what be expect console output plain app in transition app in keep alive app in teleport app what be actually happen console output ...
vuejscore
access of array per index isn t track
Bug
version 3 0 1 reproduction link step to reproduce click the add item button what be expect array item grouping render what be actually happen use for index in array in compute or method when the array be initialize to empty add array item c...
vuejscore
nest transition render inside v slot never leave
Bug
version 3 0 1 reproduction link step to reproduce click go user index click home what be expect user index or rather the container to fade out then home to fade in what be actually happen content disappear and nothing can be display anymore ...
vuejscore
typeerror find non callable iterator raise in a wired condition I can t summarize it
Bug
version 3 0 1 reproduction link image the reproduction be extract from my real world project it seem vnode be pass to key to make it render you have multiple choice 1 comment any of or 1 remove the empty object inside button vue s mixin 1 remove the...
vuejscore
dynamic event name bind with nullish value not work
Bug
version 3 0 1 reproduction link step to reproduce follow the link what be expect no error like vue2 see what be actually happen error happen
vuejscore
watch can register it s effect on the wrong instance
Bug
version 3 0 0 step to reproduce I m in the process of port a smallish front end 10klocs from vue2 to vue 3 0 0 I have one mixin that install a watch and uninstall it like this abbreviate update function this dom update unwatch1 this dom update u...
vuejscore
v on object syntax doesn t work with v if
Bug
version 3 0 0 reproduction link step to reproduce click on w v if button what be expect alert to work what be actually happen alert doesn t work
vuejscore
feat runtime support delay initialize prop fix 2325
Bug
54ed759 ignore that value also can cause 2325 which be due to the order when initialize an element s attribute I believe similar problem may exist on other platform so I think it might be well to add delayinitprop to runtime core runtime core provide a render option call delayinitprop ...
vuejscore
any content prevent slot component use default value
Bug
version 3 0 0 reproduction link step to reproduce there be a simple example you just need to check the element on the dev tool image image what be expect default value should be use for invalid content what be actually happen any conten...
vuejscore
v show do not take effect with custom directive on parent
Bug
version 3 0 0 reproduction link step to reproduce 1 add any custom directive to a parent component 2 use v show directive in the child s root dom 3 if the value of v show be false the child be still show 4 change v show to v if and the child will no...
vuejscore
possible dom update issue with input type range
Bug
version 3 0 0 reproduction link step to reproduce 1 click show modal button 2 type something into input 3 see range slider jumping correct itself what be expect render first tick display range value correctly what be actually happen range s...
vuejscore
toggle teleport disabled may create duplicate child
Bug
version 3 0 0 reproduction link step to reproduce click toggle twice then click toggle disabled once image what be expect no duplicate child what be actually happen there be duplicate child
vuejscore
teleport child be immediately remove from html when disable true in transition
Bug
version 3 0 0 reproduction link step to reproduce follow the link what be expect when teleport be disabled it shouldn t be unmounted immediately inside transition what be actually happen it disappear immediately
vuejscore
provide add with mixin override local injection
Bug
version 3 0 0 reproduction link step to reproduce follow the link what be expect show app app what be actually happen show noapp app
vuejscore
text add with ime to input that have v model be go when the view be update
Bug
version 3 0 0 reproduction link step to reproduce 1 place an input or textarea with v model 2 type some text in language that can be unresolved state such as japanese or chinese 3 update view in some way what be expect nothing happen even if update w...
vuejscore
can t get value from datum in production mode
Bug
version 3 0 0 reproduction link step to reproduce 1 clone the repo 2 run npm I 3 run npm run build 4 run project from the dist folder 5 click to button and see the console you will get an error what be expect I want to get the value from datum ...
vuejscore
template compilation error if else with space between element do not work
Bug
version 3 0 0 reproduction link template explorer 7b 22src 22 3a 22 3cdiv 20id 3d 5c 22app 5c 22 3e 5cn 20 20 3c 20doesn t 20work 20 3e 5cn 20 20 3cspan 20v if 3d 5c 22a 5c 22 3e1 3c 2fspan 3e 20 3cspan 20v else if 3d 5c 22b 5c 22 3e2 3c 2fspan 3e 5cn 20 20 3c 20doesn t 20work 20 ...
vuejscore
directive on root element of component be not invoke when component have bind directive
Bug
version 3 0 0 reproduction link step to reproduce follow the link what be expect log 3 2 1 what be actually happen log 3 1
vuejscore
watcher for a route param be call when a user leave the route
Bug
version 3 0 0 reproduction link sfc enrnu8fyozam rwnl9azgu8mddf5gp09 0jbekdge2xddhn vtimmstt9nrduycspyf56xfhe2pyeujwsni1vhopdv1kxowso9hwwwusdhkyq2fzygbuwa dpv hdhborb4hofpekict4l d435l5xynqotnyoebctggqjvaoq gzqc665aurc8bafr0k2q81aq87vsb0xe4xasspflcd1mgua qapvtzzzaeenyukyv7z5pmks8j3rvaldtkkd1sbc...
vuejscore
dynamicchildren be unmounted multiple time in some case
Bug
version 3 0 0 reproduction link step to reproduce just run and view the console log what be expect myt umounte be show once what be actually happen myt umounte be show twice I encounter this one when I have a onbeforeunmounte hook that could...
vuejscore
ref in slot disappear when wrap teleport
Bug
version 3 0 0 reproduction link step to reproduce follow the link image what be expect ref ref2 ref ref3 should be bind when focus the input what be actually happen they be undefined
vuejscore
nexttick don t work as expect
Bug
version 3 0 0 reproduction link step to reproduce just click on the button change lg and take a look into the console this var line 17 inside the nexttick be the window object and not the current instance what be expect this should be the current ...
vuejscore
errorcapture errorhandler can t catch error from create hook
Bug
version 3 0 0 reproduction link step to reproduce throw error from child component try to catch it via errorcapture in parent component try to catch it via global errorhandler what be expect error be catch what be actually happen error can t be catch ...
vuejscore
errorcapture reverse behavior
Bug
version 3 0 0 reproduction link step to reproduce throw error from child component catch error in parent component via errorcapture hook return false as per documentation to prevent error propagation what be expect error be not propagate what be actually happ...
vuejscore
v model number do not work for select tag
Bug
version 3 0 0 reproduction link step to reproduce just select a number from the dropdown the type show up as string what be expect the type should be number what be actually happen the type be string this be work correctly in vue 2 ...
vuejscore
inconsistent event case for render function
Bug
version 3 0 0 reproduction link step to reproduce create a render function that recieve a custom event in eslint plugin vue the doc you recommend to use kebab case for event that be emit event name this cause some friction for I when use render function as when listen for t...
vuejscore
watch trigger even if value be not change
Bug
version 3 0 0 reproduction link step to reproduce open console and watch output what be expect only one log message true false what be actually happen log fire every second with false false js const compute watch ref vue ...
vuejscore
memory leak in ssr
Bug
version 3 0 0 reproduction link step to reproduce 1 run yarn in both the rc5 and gm dir 2 run node test js in the rc5 dir note the two end number report 3 run node test js in the gm dir note the two end number report wha...
vuejscore
error can not read property el of undefined in production mode
Bug
version 3 0 0 reproduction link step to reproduce 1 use vue cli to create a new project 2 put the code into your page s template const a 100 3 run yarn build 4 run http server dist 5 visit the page 6 error happen ...
vuejscore
toggle nest component with async setup inside suspense fail
Bug
version 3 0 0 reproduction link step to reproduce click toggle child many time what be expect the child to display what be actually happen the child doesn t display and there be an error find with
vuejscore
suspense component kill reactive change
Bug
version 3 0 0 reproduction link step to reproduce there be a really simple form with just two input when you change the input datum in the sandbox you will see that the form state win t change between suspense tag if the repo be not open please use the refresh button...
vuejscore
reactivity issue with property watch and emit
Bug
version 3 0 0 reproduction link step to reproduce on the minimal reproduction example click on via watch on component property what be expect it should display global indirectval what be actually happen it display global initialvalue on the...
vuejscore
unhandled error during execution of watcher callback and scheduler flush
Bug
version 3 0 0 reproduction link step to reproduce click the increment button what be expect this el should be define inside of the watcher like in vue 2 what be actually happen it be null
vuejscore
beforeunmount be call twice
Bug
version 3 0 0 reproduction link reproduction 1 reproduction 2 use template have bug reproduction 2 use h behave correctly it could be a bug of vue compiler reproduction 2 1 a more compact reproduction of r2 r1 and r2 may be cause by different reason pleas...
vuejscore
watcheffect be call twice on initialisation
Bug
version 3 0 0 rc 11 reproduction link step to reproduce consider this component typescript setup const price ref 10 const history ref watcheffect history value push price change to price value return pri...
vuejscore
v once clash with v if
Bug
version 3 0 0 rc 9 reproduction link step to reproduce 1 create a new vue 3 project through vue cli or vite 2 replace app vue with 3 run npm run serve or npm run dev with vite and try load the app in a browser what be expect the result webpage...
vuejscore
css scope not work when set inheritattrs false
Bug
version 3 0 0 rc 9 reproduction link step to reproduce 1 use nest component root dom at deep child 2 set inheritattrs false css scope not work we can use v bind attrs but maybe we can have simple method what be expect css scope work what be ac...
vuejscore
regression slot be not re render when inside
Bug
version 3 0 0 rc 7 still an issue in late 3 0 0 rc 9 reproduction link working case with 3 0 0 rc 6 here step to reproduce put a reactive value to be render inside a slot wrap by a in the fiddle above the contrived example be use be div only to illustrate the issue ...
vuejscore
change event happen before v model update the value
Bug
version 3 0 0 rc 7 reproduction link step to reproduce 1 select a country from the dropdown list 2 no datum for the select country be show 3 select another country 4 the datum for the first country select be now show what be expect the first time the country be...
vuejscore
with form input
Bug
version 3 0 0 rc 5 reproduction link step to reproduce 1 wait for the page to fully load 2 type something into the input 3 press the cancel button what be expect the content should disappear because of the v if what be actually happen the...
vuejscore
transition group appear class not disappear inside suspense
Bug
version 3 0 0 rc 5 reproduction link step to reproduce npm I npm run dev start dev server and navigate to localhost 8080 index what be expect vue next 0 vue next 1 vue next 2 vue next 3 vue next 4 what be actually happen vue next 0 ...
vuejscore
move an element drop the ref
Bug
version 3 0 0 rc 5 reproduction link step to reproduce 1 open the console log 2 click the button 3 note the ref inputel be null what be expect inputel should reference the appropriate element what be actually happen it s null ...
vuejscore
when the same component be bind to the same event the event will be problematic
Bug
version 3 0 0 rc 5 reproduction link step to reproduce 1 click button1 and button2 will echo noop 2 click toggle disable 3 click button1 will echo noop click button2 will echo twice click 4 toggle disable more button2 will echo any what be ...
vuejscore
v for render twice
Bug
version 3 0 0 rc 2 reproduction link step to reproduce 1 clone the reproduction repo 2 use cd move into it 3 yarn 4 yarn dev what be expect v for be correctly render what be actually happen v for render twice this be a very w...
vuejscore
strange behavior when use v model on the root element of a custom component have itself a v model
Bug
version 3 0 0 rc 1 reproduction link step to reproduce good enter 1 in the first wrap field the field stay at 1 and the display value be 100 bad enter 1 in the second unwrapped field the field now show 0 01 and the display valu...
vuejscore
v for with v else do not work on
Bug
version 3 0 0 rc 1 reproduction link step to reproduce from what I gather in vue 2 v for be low priority than v else so it should work correctly but update to vue 3 make this code no long work I look in the vue eslint plugin and they didn t add a warning for this because i...
vuejscore
hmr be not work under certain circumstance difficult to pin point the exact context patch issue
Bug
version 3 0 0 rc 1 reproduction link step to reproduce so with my team we ve be notice that in the last couple of vue vite version hmr be really not work anymore for we often time it give cryptic error in the console and difficult ro reproduce consistently it be probably due ...
vuejscore
tailwind extract component and
Bug
version 3 0 0 rc 1 reproduction link step to reproduce 1 run terminal command npm run dev what be expect the custom color should appear on the button what be actually happen the compiler be add the component scope data name to the var but not the css variable de...
vuejscore
about lifecycle of keep alive
Bug
version 3 0 0 rc 1 reproduction link step to reproduce 1 open link 2 open devtool 3 click button what be expect one activate hook what be actually happen create hook mount hook
vuejscore
flaky error end be out of bound while work with
Bug
version 3 0 0 rc 1 reproduction link step to reproduce 1 clone repo run npm I and run npm run dev 2 open the localhost 3000 in browser 3 open in editor the file src component helloworld vue 4 edit
vuejscore
parse template throw error missing end tag with newline
Bug
version 3 0 0 beta 17 reproduction link 7b 22src 22 3a 22 20 20 20 20 3cspan 5cr 5cn 20 20 20 20 20 20v if 3d 5c 22iswordlimitvisible 20 26 26 20type 20 3d 3d 3d 20 textarea 5c 22 5cr 5cn 20 20 20 20 20 20class 3d 5c 22el input count 5c 22 5cr 5cn 20 20 20 20 20 20 3e 7b 7b 20textlength 20 7d 7d...
vuejscore
type error typescript infer prop with default value as require in custom render function
Bug
version 3 0 0 beta 15 reproduction link step to reproduce 1 git clone kightlingerh vue type error reproduction git 2 cd vue type error reproduction 3 yarn 4 yarn tsc output src index ts 20 7 error ts6133 componentb be declare but its value be n...
vuejscore
ts4082 default export of the module have or be use private name methodoption
Bug
version 3 0 0 beta 15 reproduction link step to reproduce idem as issue 1370 but for non export methodoption rollup build be report error plugin rpt2 error cinput vue vue type script lang ts 44 1 semantic error ts4082 default export of the module ...
vuejscore
attrs be not trigger render update when inside slot
Bug
version 3 0 0 beta 14 reproduction link step to reproduce render attrs inside a wrapper component with default slot it do not seem to be collect as a reactive dependency what be expect attrs should be reactive like any other reactive object see here ...
vuejscore
transition group appear class not disappear
Bug
version 3 0 0 beta 14 reproduction link step to reproduce npm I npm run dev start dev server and navigate to localhost 8080 what be expect div class list div class list item vue next 0 div div class list item vue next 1 div div...