repository
stringclasses
156 values
issue title
stringlengths
1
1.01k
labels
stringclasses
8 values
body
stringlengths
1
270k
vuejsvue
line break in textarea be excessively remove
Bug
version 2 6 11 reproduction link step to reproduce 1 set the el option to an element that contain a textarea or pre with a newline at the beginning and create a vue instance html three line break be ignore javascript new vue el...
vuejsvue
component slot be not render inside svg foreignobject
Bug
version 2 6 11 reproduction link step to reproduce run provide fiddle there be three svg box with foreignobject 1 contain simple html tag 2 contain simple vue component 3 contain complex with slot vue component what be expect all three box should s...
vuejsvue
ssr fail to render component inside v else of a v if with v html
Bug
version 2 6 11 reproduction link step to reproduce clone the repo run npm run dev open localhost 8080 observe console log what be expect I expect ssr to render bar bar as the client side do or I d like to get an eslint warn that this be a ba...
vuejsvue
refinfor search upwards of inline template boundary
Bug
version 2 6 11 reproduction link step to reproduce nest a component with an inline template that have a ref in a v for what be expect component ref ref should point to the respective element what be actually happen component ref ref be a singleton ar...
vuejsvue
swap from functional to non functional component use v if do not change v data attribute
Bug
version 2 6 11 reproduction link step to reproduce click the tick box what be expect it should say blue box with a blue background colour what be actually happen it say blue box with no background colour the issue stem from the datum v ...
vuejsvue
hydration fail when write like 123 value in the template and the data value be a empty string
Bug
version 2 6 11 reproduction link step to reproduce open the reproduction above and you will see a red vue warn in the console what be expect a successful hydration what be actually happen the hydration fail and the app re render absolutely this look...
vuejsvue
slot wrap in v if disappear after re render
Bug
version 2 6 11 reproduction link step to reproduce 1 jsfiddle will render both element 2 after 3s it will toggle off 3 after 3s it will toggle on 4 to see it happen again rerun the jsfiddle what be expect at step 3 the bottom slot content should ...
vuejsvue
the string constructor can not be use as a key
Bug
version 2 6 11 reproduction link step to reproduce open the codesandbox and you ll see a warning like vue warn duplicate key detect constructor this may cause an update error click the swap button twice to swap the list in the datum trigger the error ...
vuejsvue
v once on template not work inside a v for in two case
Bug
version 2 6 10 reproduction link move from step to reproduce the repro add entry to an array cause a re render that the template intentionally display the elapse time to see which v once work and which do not what be expect all v once to never render again ...
vuejsvue
transition group have stutter when component update elsewhere
Bug
version 2 6 10 reproduction link step to reproduce use test1 test2 or test3 button to see transition without stutter use test4 test5 or test6 button to see transition with stutter what be expect no stutter what be actually happen while the dom be...
vuejsvue
error compile long string litteral many on many line
Bug
version 2 6 10 reproduction link step to reproduce just click the link and you see the error and start edit go to the second of the component and you see a red line line no 24 it say that the string literal be not correct but its because it load just a piece of it what be...
vuejsvue
when model and the option list change at the same time model may incorrectly set to undefined
Bug
version 2 6 10 reproduction link step to reproduce set model bind to select element and the array that iterate the option list at the same time make sure the new model value do not match any of the new option the model will be set to undefined what be expect ...
vuejsvue
infinite loop in vue template compiler
Bug
version 2 6 10 reproduction link step to reproduce git clone oguimbal vuebug git npm I npm start wait a couple of second and your compilation process will be freeze if you attach a debugger to the node process you will see the infinite loop in gener...
vuejsvue
vuecomponent instance retain after call vm destroy
Bug
version 2 6 10 minimal reproduction html document link load step to reproduce load the app by click the button and take a heap snapshot load unload the app multiple time by click the button end in loaded stat and take a heap snapshot search vue ...
vuejsvue
scope css attribute be reuse or discard when switch between component with scoped css
Bug
version 2 6 10 reproduction link functional component regular component and slot step to reproduce after npm run serve click the toggle button and find that child have no style child and child2 component be reuse child s datum v disappear cause the style...
vuejsvue
nest v slot be not reactive when use abbreviate syntax v slot on component itself combine with an v if v else
Bug
version 2 6 10 reproduction link step to reproduce in my example change the value by type in the input field in the work example both value change in the not work example only the nest value change the only difference be the wrapping
vuejsvue
dynamic v slot maybe overwite when use together with v for on same element
Bug
version 2 6 10 reproduction link step to reproduce 1 open the reproduction link 2 look at the render result what be expect js a a b b what be actually happen js a b b this be an english version of issue 10165 ...
vuejsvue
v bind not update dom in client side when datum in client side be different from the server side
Bug
version 2 6 10 reproduction link step to reproduce npm install npm run dev what be expect I expect the div be like this isclient what be actually happen but now it be isclient it be not nuxt s issue I have test in my ...
vuejsvue
wrong definition of the type asynccomponentfactory
Good First Issue
version 2 6 10 reproduction link step to reproduce 1 compare the asynccomponentfactory definition with the document handle loading state what be expect attribute component should be a promise what be actually happen asynccomponentpromise ...
vuejsvue
trigger a listener of a functional component break reactivity in safari 12 1 if iframe be on the page
Bug
version 2 6 10 reproduction link step to reproduce access the fiddle click the change button what be expect hello world should change to tada what be actually happen in late safari 12 1 on mac os nothing happen but it work as expect...
vuejsvue
custom directive bind differ on component vs element
Bug
version 2 6 10 reproduction link step to reproduce 1 open browser console 2 click on toggle button two time what be expect directive will emit the same console message when apply to dom element and to component on init and after click on button I m not...
vuejsvue
transition s appear hook invoke even when appear not specify falsy
Bug
version 2 5 22 reproduction link step to reproduce open the repro and note that the render page say initial appear what be expect the appear hook should not be invoke and the page should just say initial what be actually happen the appear h...
vuejsvue
transition be erroneously run when place with bizarre sequence of sible element
Bug
version 2 5 21 reproduction link screen recording 2018 12 20 at 8 21 07 pm mov step to reproduce the fiddle contain a seemingly random sequence of element that illustrate the issue describe below 1 open the jsfiddle 2 click the change button 3 the transition pl...
vuejsvue
non break space act different than other character output nbsp in template when pass via prop
Bug
version 2 5 17 reproduction link step to reproduce 1 create a new component that accept a string prop 1 display the prop within the component s template 1 use the component in a vue application and pass a string contain a non breaking space character for the prop ...
vuejsvue
use multiple select with v model and bound and unbound value cause value override
Bug
version 2 5 17 reproduction link step to reproduce change first select to some then change newly display select you will see that val2 be be set to the bind val from the val1 select instead of it s own value you can change the first select to use the number modifier on ...
vuejsvue
v once for component tag doesn t work in v for
Bug
version 2 5 16 reproduction link step to reproduce run code and watch what be expect yay yay value should not change to hell naw in 3 second what be actually happen yay yay value be change in to hell naw in 3 second wait 3 second ...
vuejsvue
and v show trigger move transition on enter
Bug
version 2 5 16 reproduction link step to reproduce 1 open the fiddle 2 click the toggle button 3 watch the move transition trigger on enter what be expect just like with v if move transition should not be trigger on enter note that it be already not tr...
vuejsvue
rerender while change affect only sible element
Bug
version 2 5 2 reproduction link step to reproduce please open codepen example and type something into input what be expect input should not lose focus what be actually happen input rerender and lose focus happen only if there be such conditional element exist b...
vuejsvue
provide prop be not inject into functional component
Bug
version 2 3 3 reproduction link step to reproduce I create a minimal reproduction of the behavior I be try to test the example just need jsx to work what be expect the property pass down from parent should show up in ctx injection what be actually happen ctx inj...
vuejsvue
v on change randomly fail on range input bind on a compute property
Bug
vue js version 2 1 10 reproduction link step to reproduce the above jsbin contain a slider range that log the value of a compute property it be bind to sliderradius when it change v on change log log be a declare function what be expect I would expect that each...
vuejsvue
compiler sfc not compatible with prettier v3
Bug
version 2 7 14 reproduction link I think it s not necessary as it s obvious in source code step to reproduce install prettier v3 in a project depend on vue compiler sfc v2 what be expect no error what be actually happen fail in compile template I find compiler...
vuejsvue
fix correctly update style
Bug
fix 12901 what kind of change do this pr introduce check at least one x bugfix feature code style update refactor build relate change other please describe do this pr introduce a break change check one yes no if yes p...
vuejsvue
bind style merge not as expect
Bug
version 2 7 14 reproduction link codesandbox io step to reproduce click mstyle button twice what be expect show red border right and blue border bottom what be actually happen only show red border right be not similar as setattribute but vue3 be simila...
vuejsvue
watcher depend on current route re evaluate after unmount
Bug
version 2 7 8 reproduction link codesandbox io step to reproduce have a watcher with a dependency on the current route unmount the component what be expect no watcher effect be call what be actually happen watcher effect be call look like it...
vuejsvue
kabab case component doesn t work when I type same name but camelcase ref
Bug
version 2 7 7 reproduction link github com step to reproduce 1 clone the repo 2 run pnpm I 3 run pnpm dev what be expect kebab case component can be render what be actually happen kebab case component can t be render but when I delete re...
vuejsvue
vue 2 7 injection symbol pinia not find
Bug
reproduction step to reproduce the bug open the reproduction link and see the terminal of devtool expect behavior should not throw any error actual behavior vue warn injection symbol pinia not find additional information doesn t meet this issue ...
vuejsvue
fix compiler sfc support more indent lang
Bug
what kind of change do this pr introduce check at least one x bugfix feature code style update refactor build relate change other please describe do this pr introduce a break change check one yes x no if yes please describe ...
vuejsvue
prop be not reactive in 2 7 0 beta 2
Bug
version 2 7 0 beta 2 reproduction link stackblitz com step to reproduce ts import definecomponent isreactive toref from vue export default definecomponent prop foo string setup prop console log prop isreactive prop ...
vuejsvue
fix type async component type
Bug
what kind of change do this pr introduce check at least one x bugfix feature code style update refactor build relate change other please describe do this pr introduce a break change check one yes no x not sure if this be c...
vuejsvue
compute field for name slot stop work if I add watcher to they
Bug
version 2 6 11 reproduction link step to reproduce 1 click the button to see that the compute field work 2 uncomment the watcher 3 click button again and notice that compute field don t work and the watcher be never trigger what be expect compute field w...
vuejsvue
slot be reuse with v if v else
Bug
version 2 6 12 reproduction link step to reproduce click the switch button it will switch between two component with slot and without slot the component without slot should not appear the slot pass to the component with slot what be expect should display the fa...
vuejsvue
fix ssr avoid miss file in manif
Bug
what kind of change do this pr introduce check at least one x bugfix feature code style update refactor build relate change other please describe do this pr introduce a break change check one yes x no if yes please describe ...
vuejsvue
unknown custom element
Bug
version 2 6 11 reproduction link step to reproduce open the console in the provide jsfiddle or run vue config gettagnamespace foreignobject what be expect vue config gettagnamespace foreignobject should return svg what be actually happen ...
vuejsvue
vue server renderer inheritattrs false doesn t work properly
Bug
version 2 6 11 reproduction link step to reproduce clone the repo npm install npm run test or javascript step 1 create a vue instance const vue require vue const appcard template appcardprop appcardprop prop ...
vuejsvue
fix keep alive should not cache destroy instance
null
what kind of change do this pr introduce check at least one x bugfix feature code style update refactor build relate change other please describe do this pr introduce a break change check one yes x no if yes please describe ...
vuejsvue
fix core fix samevnode for async component
Bug
I find and fix a vdom bug relate to async component and ssr I originally notice this bug on my closed project use nuxt the minimal reproduction code be include in test phenomenon throw when hydrated pende async component be patch by v if false node version 2 6 11 cause 1 v if ...
vuejsvue
with whitespace condense all nbsp even meaningful be convert to space
Bug
version 2 6 11 reproduction link step to reproduce run example js in node alternative step detailed explanation 1 setup vue template compiler with whitespace condense it be default for vue cli 2 render template with entity e g a b 3 inspec...
vuejsvue
problem with v bind class in microsoft edge for component
Bug
version 2 6 10 reproduction link step to reproduce open codepen example there be 3 component test x on the page which set text color and background each label tell about text color and background chrome everything work as expect edge 18 1st and 3rd label h...
vuejsvue
multiple argument in custom event with a modifier be not pass to handler
Bug
version 2 6 10 reproduction link step to reproduce add a modifier to one of the event listener e g emission once what be expect that all argument will be pass to the function what be actually happen only the first argument be pass my guess be that it lie i...
vuejsvue
unexpected comma in the function declaration
Bug
version 2 6 10 reproduction link l3296 l3296 step to reproduce see the link l3296 what be expect function createcomponentinstanceforvnode vnode we know it s mountedcomponentvnode but flow doesn t parent activeinstance in lifecycle state ...
vuejsvue
ssr textarea domprop keep falsy value
Bug
version 2 6 10 reproduction link step to reproduce view page source what be expect html what be actually happen html null similar to 9231 repro in vue test ssr ssr string spec js js it falsy domprop value ...
vuejsvue
vue server renderer directive not apply to import component
Bug
what problem do this feature solve currently ssr directive be not apply to use sub component but only to html tag and element reproduction js step 1 create a vue instance const vue require vue const test template this should be red const app new v...
vuejsvue
render async load component be cause attrs change
Bug
version 2 6 10 reproduction link step to reproduce 1 create component with render function which can render another component after time 2 render component after promise resolution timeout be cause render twice and change of attrs if child component have any prop wit...
vuejsvue
prop validator fail to generate validation error message when use symbol
Bug
version 2 6 10 reproduction link step to reproduce pass a symbol as the value of a component prop which expect another type what be expect the console should show the validation error message what be actually happen the prop validator try to build an validat...
vuejsvue
with whitespace condense element contain only nbsp and space be condense into empty tag
Bug
version 4 0 0 rc 1 reproduction link environment info environment info system os macos 10 14 6 cpu 4 x64 intel r core tm i5 7360u cpu 2 30ghz binary node 10 15 3 usr local bin node yarn 1 17 3 npm global bin yarn ...
vuejsvue
datum property not find and or incorrectly type in typescript 3 6 2
Bug
version 2 6 10 reproduction link be aware that jsfiddle do not show typescript compiler error step to reproduce use typescript 3 6 1 beta currently stable at 3 6 2 have at least one prop correctly type all your method use a non string data property in your compone...
vuejsvue
nest async component pass as slot be not render in ssr
Bug
version 2 6 10 reproduction link step to reproduce when the codesandbox start up it should run the npm start script if it doesn t open a bash terminal and run npm start to see the html generate from ssr you can also take a look at the component in the ...
vuejsvue
default slot content should not be evaluate when the parent be provide it
Bug
version 2 6 10 reproduction link step to reproduce in the child vue we have a slot with a default slot content in the parent vue we override the default content of the child what be expect imo the content of the slot in child component should not be evaluat...
vuejsvue
scope slot warn when use inside of dynamic component on regular element
Bug
version 2 6 10 reproduction link step to reproduce when I use dom template parse caveat to add a component e g I can t use scope slot slotprop without receive a warning in the console I would like to use it this way html slotprop slotprop test ...
vuejsvue
attribute list under isbooleanattr be alter under v pre attribute tag
Bug
version 2 6 10 reproduction link step to reproduce in a v pre tag or child use an attribute list under the isbooleanattr list in src platform web util attrs js what be expect the attribute value be unchanged what be actually happen the attribute val...
vuejsvue
bug about keep alive and click native cause repeat attach event handler
Bug
version 2 6 10 reproduction link step to reproduce 1 click show hide button to hide button add 1 2 click show hide button to show button add 1 3 click add 1 what be expect repeat step 1 and step 2 click the add 1 to add 1 to the number ...
vuejsvue
memory leak with component with input with v model
Bug
version 2 6 10 reproduction html document go to home go to about screen shoot 2019 05 09 at 18 59 07 step to reproduce go to the about page type in the input leave the page collect garbage and take a snapshot with devtool ...
vuejsvue
doesn t destroy cache component after when max be 1
Bug
version 2 6 10 reproduction link step to reproduce 1 open dev tool to see console 2 cycle through the route 3 view console and observe lifecycle hook log what be expect I d expect once the max cache be reach in the example case of 1 the component th...
vuejsvue
fix keep alive cache what be really need not the whole vnode
Bug
cache what be really need not the whole vnode datum it also fix 9842 fix 2549 fix 9972 what kind of change do this pr introduce check at least one bugfix feature code style update x refactor build relate change other please d...
vuejsvue
build project with vue cli 2 if some function name functionclickhandle and bind with click functionclickhandle it will run automatically
Bug
version 2 5 9 reproduction link step to reproduce 1 clone my github project 2 npm I npm run dev 3 I look like be require something happend window alert 1i be big boss window alert 2i be big boss because it run s autom...
vuejsvue
memory leak when use transition and keep alive
Bug
version 2 6 10 reproduction link step to reproduce I write a demo html demo the debug process be as follow 1 click collect garbage and take heap snapshot snapshot 1 2 click the route button on the left 10 time then click...
vuejsvue
error use multiple dynamic slot name invalid dynamic argument expression
Bug
version 2 6 10 reproduction link step to reproduce 1 clone this repo 2 run npm install 3 run npm run serve what be expect multiple dynamic slot name should work as expect what be actually happen the follow error be throw invalid ...
vuejsvue
default scope slot be not present under data scopedslot object in functional component
Bug
version 2 6 8 reproduction link step to reproduce check console log what be expect I expect data scopedslot to always be the same as its mirror object scopedslot in functional component context what be actually happen default scope slot function be undefined ...
vuejsvue
different behavior of arrow function and function
Bug
version 2 6 8 reproduction link step to reproduce html price e target value compile js with this return c input domprop value price on input e price e target value html this will not be work ...
vuejsvue
slot prop in render function be not sync
Bug
version 2 6 8 reproduction link step to reproduce first number picker be declare in container two second number picker be declare by footer slot change number picker the value of the first number picker would be change but the value of the second number picker wou...
vuejsvue
runtime exception performance be not define with v2 6 9
Bug
version 2 6 8 reproduction link step to reproduce it be throw from the vue dist vue js file of the late version I be currently try to isolate it yet it seem connect with the new code add recently will add more step asap if you still don t observe it 1 replicate with this...
vuejsvue
default slot without the new template syntax will not reevaluate v if
Bug
version 2 6 4 reproduction lin step to reproduce use the toggle button the syntax use in line 29 seem to not work as expect what be expect all 3 paragraph should always print the same text what be actually happen the default slot without the new te...
vuejsvue
camelcase prop bind through an object take precedence over a kebab case specific prop
Bug
version 2 6 8 reproduction link step to reproduce the repro show the issue directly what be expect I want to know what take precedence when something be bind use v bind vs set explicitly as a prop I would expect this to always be one or the othe...
vuejsvue
transition component animate when wrapper be replace
Bug
version 2 6 8 reproduction link step to reproduce press the change screen button to toggle between screen 1 and screen 2 what be expect nothing should fade and nothing should be log to console because the v if within the be always true what be ac...
vuejsvue
type normalizedscopedslot for scopedslot on rendercontext
Bug
version 2 6 8 reproduction link step to reproduce yarn install yarn serve what be expect yarn serve without error what be actually happen type error argument of type functional boolean render h createelement ctx rendercon...
vuejsvue
deep object as dynamic argument in custom directive rfc 0003
Bug
version 2 6 7 reproduction link step to reproduce create custom directive with a dynamic argument v test deep arg value what be expect it should get the value from path deep arg what be actually happen inside the bind object of a custom di...
vuejsvue
component create with async component factory break on route change
Bug
version 2 6 7 reproduction link step to reproduce 1 open 2 immediately before the async component be resolve within 7 sec click on the some page link 3 click on the home link before 7 be elapse what be expect the asyncready component should re...
vuejsvue
vue config errorhandler call twice when I return a reject promise from a handler of a component event
Bug
version 2 6 6 reproduction link step to reproduce the problem seem to happen when I handle an event emit from a component and return a reject promise to see the problem in action open the codepen link click the button and you will see in the console two log of the same error which me...
vuejsvue
value inside v slot in a v for win t update
Bug
version 2 6 0 reproduction link jsfiddle step to reproduce you can see the problem on a deploy version of here you run into a problem like that if 1 you have a v slot inside a v for and in that v slot you render an item from v for 2 you update whole array that d...
vuejsvue
v on dynamic argument doesn t work with native modifier
Bug
version 2 6 0 reproduction link step to reproduce I make a simple button component which do not emit any event in the app there be three instance of it with the click native event bind in different way you can see the first button component which be bind with click...
vuejsvue
2 6 beta regression component without slot re render when parent update
Bug
version 2 6 0 beta 3 reproduction link step to reproduce click the root button what be expect update root should be log what be actually happen update childcomponent be also log if you add v slot default it work as expect vue...
vuejsvue
in ie 11 the first input event on a text input be block if placeholder be set and the model be initialise
Bug
version 2 5 22 reproduction link step to reproduce 1 open in ie 11 2 enter a single character in the text input just after hello vue 3 model will not be update on the first character input but will be on subsequent input note to reproduce a second time y...
vuejsvue
vbind style do not work with zindex
Bug
version 2 5 22 reproduction link step to reproduce give a very simple component zindex be not bind to style what be expect bind zindex do not get kebab case like maxwidth and minwidth I expect it to work the same way pass z index...
vuejsvue
transition not trigger appear when use as the root of a component with appear attr
Bug
version 2 5 22 reproduction link step to reproduce open repro click on the show button and note that animate on enter text appear what be expect to see a text animate on appear which have to be add by appear hook what be actually happen ...
vuejsvue
v if event handler
null
version 2 6 0 beta 1 reproduction link step to reproduce click on click I what be expect demo with v2 5 22 show the expect behavior the dropdown component should not be able to handle a click event which be suppose to create it what be actually happen the d...
vuejsvue
v model s value not in attrs if value not define as a prop
Bug
note this issue only refer to v model for component and be not consider v model on dom element there be a discussion which include this unexpected behavior in 6216 and also a pr 6327 that try to fix that but those also include be able to pass through v model to dom element which be not the cas...
vuejsvue
class bind not update on client after use isserver with boolean value
Bug
version 2 5 21 reproduction link step to reproduce code sandbox will illustrate the issue may take a few second to load notice how isactive print true yet the class isn t bind what be expect class to bind class attribute class nav link act...
vuejsvue
ssr style bind keep falsy value
Bug
version 2 5 21 reproduction link I know minimal repro below step to reproduce view page source what be expect html what be actually happen html reproduce in vue test ssr ssr string spec js then run npm run test ssr ...
vuejsvue
provide value in mixin be not accessible
Bug
version 2 5 21 reproduction link open the link and see the error message in dev console step to reproduce create two mixin with a provide object use symbol as it s key field then assign these mixin to a component what be expect the child component can access two ...
vuejsvue
vue do not correctly dedupe global mixin global mixine lifecycle hook be call twice
Bug
version 2 5 21 reproduction link step to reproduce goto the minimal reproduction link or simply add this to test unit feature option mixin spec js js it should not mix global mixine lifecycle hook twice const spy jasmine createspy global mix in lifecycle...
vuejsvue
compute property don t receive component s instance as first argument in ssr
Bug
version 2 5 17 reproduction link step to reproduce clone install dependency run npm run ssr serve what be expect should render the app what be actually happen when you start the server you should see that application throw follow error can not...
vuejsvue
both move and leave trigger for remove transition group item if transition group have display flex
Bug
version 2 5 17 reproduction link step to reproduce see fiddle what be expect only a leave be trigger when remove any item from the list display with display flex what be actually happen both a leave and a move be trigger
vuejsvue
vue server renderer camelcase local directive be not apply in ssr
Bug
what problem do this feature solve currently ssr directive can be only pass in with kebab case key this isn t denote anywhere except in the test luckily and not intuitive as they can be provide as camelcase one on the client as well can we introduce camelcase ssr directive I d be avai...
vuejsvue
vue template remove whitespace immediately after inside of a pre
Bug
version 2 5 17 beta 0 reproduction link step to reproduce 1 run a unit test what be expect newline after input be preserve what be actually happen newline after input be remove
vuejsvue
override a binded prop with hypenate syntax instead of camelcase not work
Bug
version 2 5 17 reproduction link step to reproduce create two child component with the same prop in camelcase bind prop from first child to second try to override camelcase prop in hypenate syntax from first child to second what be expect prop override correctly ...
vuejsvue
memory leak when use async component
Bug
version 2 5 17 reproduction link step to reproduce 1 load the reproducer and take a memory heap snapshot search the heap you will find 4 vuecomponent app container child async child image 2 click the destroy button this toggle a v if which will remove child...
vuejsvue
immediate watcher skip parent s errorcapture and jump straight to the top error handler
Bug
version 2 5 16 reproduction link step to reproduce simply open and run the sandbox should show the error instead of get an alert that app vue catch the error in helloworld s watcher the error escape all the way to the top level to see the expect behavior open hello world and set the ...
vuejsvue
maximum call stack size exceed in ssr with a v for with 1000 component
Bug
version 2 5 16 reproduction link step to reproduce sorry I fail to visit gist or other online code share platform just run the follow script with and instal but in node 6 it be ok process env vue env server very important const vue require vue ...
vuejsvue
functional component with multiple root don t render properly when use with v for
Bug
version 2 5 16 reproduction link step to reproduce create a functional component that return multiple root element via an array I e javascript return h span h span then use the functional component alongside v for html what be expec...
vuejsvue
v model lazy be not update the value of an input when it have a focus
Bug
version 2 5 16 reproduction link step to reproduce 1 type jacob into the input 2 hit enter what be expect value property of the input element should be change to joseph as be the value of the name property in the vue instance what be actually happen value pro...