repository stringclasses 156
values | issue title stringlengths 1 1.01k ⌀ | labels stringclasses 8
values | body stringlengths 1 270k ⌀ |
|---|---|---|---|
vuejsvue | svg image tag be incorrectly convert to img unless inside | Bug | vue js version 1 0 26 reproduction link step to reproduce use multiple component to define an svg drawing and include an element in one of the component which do not include an tag what be expect the image should correctly draw what be actually happen the image do no... |
vuejsvue | v pre on textarea break sometimes | Bug | vue js version 1 0 26 reproduction link what be expect both textarea have text inside they what be actually happen first textarea have text second textarea be empty and have literal attribute value |
vuejsvue | prop validation fail vue warn when component initialize with proper propsdata | Bug | I make a universal component modal that can be use as inline component or via service this modal open propsdata component modalform it work fine but warn about invalid prop because it run in compileprop step and propsdata will be use later in makepropslinkfn step compile pro... |
vuejsvue | when use v model on a component element the value prop be always a string | Bug | vue js version v2 0 0 alpha 8 reproduction link step to reproduce open console read warn what be expect the special value prop which be pass from v model on the component element in the template shuold contain a boolean value since the parent pass a boolean to v model ... |
vuejsvue | vue js v2 0 0 alpha 8 bug | Bug | vue js version vue js v2 0 0 alpha 8 reproduction link step to reproduce 1 define empty arr 2 define an element after v for element can not leave a blank space 3 then assign arr datum what be expect what be actually happen |
vuejsvue | appear true break for global transition | Bug | the appear true option have no effect for transition that be globally register they work fine with inline transition object though here s the repro |
vuejsvue | 2 0 v once and v for don t seem to play nice together | Bug | vue js version 2 x reproduction link step to reproduce just run the fiddle what be expect arr be iterate each item and its type string be display what be actually happen item be lose typeof return undefined will look deeply into this if yyx990803 could ... |
vuejsvue | vue 2 0 text input with number modifier display nan value | Bug | vue js version 2 0 0 alpha 5 2 0 0 alpha 6 haven t check previous release reproduction link step to reproduce type any letter into input field what be expect shouldn t display nan value |
vuejsvue | multiple vue instance bug | Bug | vue js version vue js v2 0 0 alpha 5 reproduction link step to reproduce first read bar car log then assign bar car log baoma what be expect foo object will not update what be actually happen foo object will also be update |
vuejsvue | rangeerror with form of method post | Bug | as report here this simple app html throw vue js 235 uncaught rangeerror invalid array length if change the form method to something other than post or the input name to something other than attribute it seem to work fine |
vuejsvue | 2 0 server side render with v text or v html doesn t work well | Bug | hi I try to use rendertostre to the element with v text or v html it doesn t work well this be the code to reproduce javascript import vue from vue dist vue common js import compiletofunction from vue package vue template compiler import createrenderer from vue package vue server ... |
vuejsvue | multiline html interpolation fail on 1 0 24 | Bug | here s a minimal viable example not a huge deal but html code be often preferable to html code since preformatte text would preserve the line break at the beginning and end of the code block |
vuejsvue | v model break selectionstart | Bug | vue js version 1 0 24 reproduction link go to demo folder and open index html step to reproduce input something into the email layout input field put the cursor in the middle of your text hit backspace on the virtual keyboard what be expect the text will be remove in the cursor po... |
vuejsvue | array set remove item from the dom | Bug | vue js version 1 0 24 reproduction link step to reproduce use array set in a multidimensional array with primitive value what be expect the value to change and the dom to update what be actually happen the value change but it s remove from the dom whilst exist in the array... |
vuejsvue | fix 2988 | Bug | make rendering of undefined and null in one time bind mode as same as reactive bind |
vuejsvue | bug one time bind doesn t deal with null like value properly | Bug | vue js version 1 0 24 reproduction link step to reproduce for one time bind undefined value would display as undefined it s different from two way bind what be expect should display as empty what be actually happen display undefine |
vuejsvue | default v transition class be not be remove after transition be update | Bug | vue js version 1 0 18 any version I think reproduction link what be expect if dynamically bind transition be update and previous transition be vue default v transition class should be remove what be actually happen check the example if we change transition from default v tr... |
vuejsvue | the json filter not support to use 0 as parameter | Bug | vue js version 1 0 24 reproduction link step to reproduce js new vue datum person name felix html person json 0 what be expect js name felix what be actually happen js name felix ... |
vuejsvue | indoc node win fail due to mismatch protocol https and chrome extension | Bug | vue js version 1 0 23 reproduction link none since it be relate to chrome extension step to reproduce I be use cvim chrome extension it will insert into body I be use vue router and it be throw error to block the app to run vue common js 1140 uncaught securityerror block a fram... |
vuejsvue | template slot content disappear on subsequent visit | Bug | vue js version 1 0 22 work fine in 1 0 21 reproduction link step to reproduce click button view2 then click button view1 what be expect both template slot content and nontemplate slot content should show what be actually happen template slot content disappear |
vuejsvue | component ready not fire for iframed vue instance | Bug | vue js version 1 0 22 reproduction link step to reproduce create a new vue instance with el that point to load iframe body inside this iframe body create a component the ready method be not call on this component even though the component be render with it s template what be expect I e... |
vuejsvue | watcher in custom component be not fire when prop value be update from another watcher | Bug | vue js version 1 0 22 reproduction link what be expect when some datum pass to custom component as a prop be update inside watcher callback then this change should be detect by prop watcher in custom component what be actually happen watcher in custom component be not aware about this c... |
vuejsvue | literal modifier on custom directive cause v if to be ignore | Bug | vue js version 1 0 21 reproduction link |
vuejsvue | datum function be call twice not once | Bug | vue js version 1 0 21 reproduction link step to reproduce register a vue component with datum function javascript vue component my hello datum function console log hello return new vue el body instantiate the com... |
vuejsvue | event expression be not handle correctly | Bug | vue js version 1 0 21 reproduction link step to reproduce click model log and model log button and observe console replace model by click replace model button and repeat click model log and model log button what be expect 1 click model log model 1 messa... |
vuejsvue | be attribute still present in the dom after compilation | Bug | vue js version 1 0 21 reproduction link I be not able to reproduce it in a jsfiddle I can upload the whole thing to webpackbin if need when the component be use multiple time step to reproduce create multiple element with a be attribute what be expect the be attribute be remove ... |
vuejsvue | template tag v for v if together not as expect | Bug | vue js version 1 0 21 reproduction link step to reproduce I want a condition v for template v for a in 6 v if a 2 p a I get 0 5 I don t want this p 0 p 1 p 2 p 3 p 4 p 5 template v for a in 6 template v if a 2 p a this be ok p 1 p... |
vuejsvue | v else not work when together with v show on custom component | Bug | vue js version 1 0 21 reproduction link step to reproduce click toggle button what be expect when mycomponent be show the msg should be hide what be actually happen the msg always show |
vuejsvue | vue config devtool with no effect | Bug | vue js version 1 0 20 reproduction link here should not be able to load devtool I use devtool false config step to reproduce vue config devtool false what be expect vue devtool will not be load what be actually happen vue devtool be actually load |
vuejsvue | problem with v for v if in firefox | Bug | vue js version 1 0 20 reproduction link step to reproduce start example what be expect we should get val 1 val 2 val 3 val 4 val 5 val 6 what be actually happen in firefox we get nothing but if we will change val val to ... |
vuejsvue | coerce prop return object be not reactive | Bug | vue js version 1 0 20 reproduction link then how can I set reactivity on a coerced prop so I could extend a prop with multiple new reactive property with object assign prop a 0 b 2 for example |
vuejsvue | error nextsibling of null | Bug | there be a wired bug in late vue everything be ok when click on tab slowly keep switch between tag if click too fast without the previous transition finish there will be a redirect loop here be the sample code it s well to test on phone with both finger tab fast on the footer tab here be the screensho... |
vuejsvue | slot xxx not work in v for loop | null | in my code a component be register with different slot name calculate in a v for loop as below template register component and init instance in js and below code work fine in html insert every slot manually work fine 1 2 3 4 5 but when I change the code as b... |
vuejsvue | untrimmed space in class attribute cause syntax error | Bug | vue js version 1 0 17 reproduction link step to reproduce 1 in a custom element add extra space at end of class attribute eg class p1 p2 class p1 p2 I have not check other attribute the problem may exist in they as well what be expect vue should trim the extra spac... |
vuejsvue | problem | Bug | vue js version 1 0 17 reproduction link step to reproduce click the button in jsfiddle demo what be expect the component render without error what be actually happen uncaught typeerror can not read property reuse of undefined vue js 4116 |
vuejsvue | debounce model be not update | Bug | vue js version 1 0 16 reproduction link step to reproduce 1 focus on the only input available within the output window type a single k letter and immediately hit enter 2 clear the text in the output 3 type a single k letter wait a two 2 second or more and hit enter ... |
vuejsvue | svg element v show transition chrome problem | Bug | it seem that no transition leave happen when use v show with css transition on svg element in chrome only transition enter happen but with firefox everything be work fine v if may be affect too chrome version 48 0 2564 103 64 bit os x vue js version 1 0 16 reproduction lin... |
vuejsvue | vue try to observe enumerable but non configurable property | Bug | vue js version 1 0 16 reproduction link check javascript console for error step to reproduce add a non configurable but enumerable property to component data prop what be expect vue js should not be redefine property that be not configurable in definereactive as by virtue of be... |
vuejsvue | name nest slot not work | Bug | jade main comp1 div slot somename comp1 comp1 comp2 slot name somename wrongplace slot comp2 comp2 rightplace slot name somename wrongplace slot output jade comp1 comp2 rightplace wrongplace div slot somename ... |
vuejsvue | custom directive pass through a slot with v else isn t unbound on vm destroy | Bug | apology for the long title here s a jsfiddle here be the step to reproduce it jsfiddle reference in bracket create a component with a slot that have a v else directive on it mywrapper create another component that import use the first one mycomponent in the second component create ... |
vuejsvue | name slot be get insert twice | Bug | in the following example slot1 be get insert twice be this normal any idea why it s behave like this |
vuejsvue | transition vm | Bug | vm v for v show transition v show false debug class expand transition expand leave display none transition v1 0 7 |
vuejsvue | call slot not be remove the first time | Bug | I m try out component with slot and something weird be happen my component be a bootstrap modal I make it work by pass the boolean prop showeditstatemodal which show or hide the modal it have a header body default and a footer slot the problem be the first time I open the modal after the page load it... |
vuejsvue | v model inside v for doesn t set value when property name be dynamic | Bug | as explain in this forum post and demonstrate by this fiddle if you have something like v model obj prefix key you occasionally get this can not read property get of undefined or that vue warn invalid setter function body prefix scope key |
vuejsvue | the afterenter hook dose not wait for the transition to finish | Bug | afterenter transition transition example afterenter transition afterleave transition afterenter afterleave transition css vue 1 0 7 chrome firefox |
vuejsvue | v ref inside component that appear multiple time | Bug | I see the follow warning when I have multiple instance of a component on a page v ref my inner must be use on a child component find on see repro the warning start appear with v1 0 5 I m not have any issue beyond see the warning |
vuejsvue | array mutation method misbehave under certain circumstance | Bug | demo explanation inside a component with a two way sync array prop item if item be assign after item push or any other method then the assignment get ignore foresee the question why mutate before assign there be use case for example js this item this item splice start length ... |
vuejsvue | custom directive param bind problem | Bug | hi I be use vue 1 0 3 and try to bind param into custom directive but all param parse as string this problem can be see in this example on vuejs site option param no long parse as array its just a string I try to use v bind but its also convert param to string object object |
vuejsvue | 1 0 3 click | Bug | grid 1 html html 2 expression js vue filter expression function handler expression if handler return if expression return function e return handler call this e ... |
vuejsvue | fail to resolve custom directive on component | Bug | html as above if we apply a custom directive on a component then vue will complain the custom directive not find because the directive be resolve on the component s option not its context here be an online example an error message be log in the console test version 1 0 0 beta 4 |
vuejsvue | v for not trigger detach on child | Bug | I be use 1 0 0 rc 1 and I think I find an issue with use v for that repeat vue component and those vue component have hook to detach you can see the follow fiddle observe the console for every additem and removeitem I expect to see attach and detach in the console however we can see only attach I ... |
vuejsvue | warn when duplicate prop from mixin | Bug | sometimes we would abstract some behaviour into mixin for example a b and c if a be mixed in b and c and if the a have a require prop name a then when component d require b and c in mixin vue will warn the a be require even if a value pass to a because one of... |
vuejsvue | fail to resolve component if use a variable pass in via a prop use the expression syntax prop variable 1 0 0 alpha 8 | Bug | hard code the component name make it resolvable again this work this do not itemcomponent be a variable with a value of item |
vuejsvue | v for on object not update correctly when the object be mutate via set | Bug | ref 1363 |
vuejsvue | migrate from v repeat to v for while use partial inside the loop | Bug | I have trouble migrate follow code to vue 1 0 I use 1 0 0 alpha 6 as a migration path html key vue setup javascript new vue el body datum param parama type number value 42 ... |
vuejsvue | component don t get attach if transclude with v if | Bug | this be the same issue as 684 but with vue js 0 12 here be a fiddle that illustrate it |
vuejsvue | error scope for component s slot when in v for | Bug | when compile the example follow the console will print the error error when evaluate the item value which be raise by the slot directive call in the content linker in compile function src instance lifecycle html item value |
vuejsvue | filter change array to object break v repeat | Bug | filter which process array and return a hash eg a grafting operation like groupby lead to v repeat not be evaluate as expect an workaround be to use a method but be semantically not correct cf this fiddle |
vuejsvue | leave transition hook be call twice if css false in in out mode | Bug | run into this after try your suggestion from 1241 |
vuejsvue | scope inside v repeat in tag be affect by the component s v repeat | Bug | it seem like there could be a problem with a share prop between two v repeat where one affect the other one please see js fiddle for comment |
vuejsvue | select component can not read property childnode of undefined | Bug | component demo demo level2 level1 can not read property childnode of undefined |
vuejsvue | out in transition doesn t work properly with three transition element | Bug | component 2 wait for component 1 to leave but before component 2 can begin animate in the component be replace and component 3 doesn t wait for component 1 to leave it animate in immediately the issue doesn t happen if you increase the second delay in the test method from 2000 to 2600 by then component ... |
vuejsvue | variable in component outer element class deactivate the outside v class | Bug | hi I just notice that it s possible to call a component et use v class from outside and it will be properly merge with exist class but when you introduce a variable into the component class attribute the outside v class be ignore here s a fiddle illustrate the bug |
vuejsvue | parsepath a will path through in parser path js | Bug | because the inident state have two confuse meaning normal path indentifier and in bracket indentifier so assertinvalidpath a will be fail maybe I would try to pull a well one later |
vuejsvue | leavecancelle not be call properly in v transition | Bug | try this fiddle click button the blue rect should leave in 5s during this time click button again to cancel leave transition strangely leavecancelle hook doesn t be call but entercancelle be call instead you can see track info in the console |
vuejsvue | use v if v show with v cloak | Bug | the follow code snippet produce such result and element remain hidden even when if post length 0 become true I expect v cloak to go away in all case be it by design special use case with v if I suppose it should be or fix or a warning add about potential iss... |
vuejsvue | prop with default value be not add to component datum | Bug | if I don t explicitly add they to the component element attribute |
vuejsvue | destroy hook not call when unbind component | Bug | vuejs discussion 231 |
vuejsvue | ready method be not call on child component | Bug | while try this framework use vue loader and webpack I notice that the ready method on a child component isn t call at first I though that it must be some problem with vue loader after but build a reduce test case I think this be a problem with you can find the test case here |
vuejsvue | issue with v component v repeat combine | Bug | test with late v 0 12 5 seem v component do not work with v repeat as it do with component be or my component it would not be much problem if it be not for table where the tr must be use example I have create a fiddle where you can see be fail and the error in the console would be do... |
vuejsvue | bring v component back because of prefix be configurable | null | I just notice this line in the 0 12 0 release note v component have be remove now all component should use the custom tag syntax for dynamic component a new syntax be introduce I ve only just today switch the cms I m build with vue js to wrap vue js by rename it on require and set up a c... |
vuejsvue | csp version error when minify | Bug | I m build a chrome app with 0 12 1 csp and when I use the minify version use uglifyjs I get the follow error invalid regular expression ... |
vuejsvue | component bug | Bug | component conponent dev 0 12 0 12 |
vuejsvue | custom element tag with v repeat break regression in 0 11 9 | Bug | before 0 11 9 html work like a champ now the component do not render and raise the warning v component my component can not be use on an already mount instance |
vuejsvue | issue with dynamic component v with and assign to datum | Bug | v component be not update dynamically in some case it seem to have to do with some use of the v with directive and with assign a new value to vm datum see this jsfiddle |
vuejsvue | vue 0 11 8 component bug | Bug | vue component mg header vue mg header mg header mount component |
vuejsvue | v if v on directive in a component | Bug | hello I ve create an example to show the issue it seem the v on directive bind doesn t work properly if it under v if |
vuejsvue | strange error when we watch and work with the list | Bug | demo we have list which be under watch in watch we just replace text null to text some text when we add an item and later we clear list we see error we have html list 0 text if we remove second condition we will not have error if you replace 2 condition to 1 we wi... |
vuejsvue | v with fail silently if component have replace true and more than 1 root element | Bug | see this if replace set to true and a multi root template could cause the param can t pass into component in this case the comment block cause the problem |
vuejsvue | number do not work with select | Bug | if v model be a and with number it always get string when select change 1 2 3 please see the example |
vuejsvue | v repeat in v if seem to work incorrectly | Bug | hello in this example no movie title when add button be push see fiddle |
vuejsvue | ready hook be not call when use together with v if | Bug | when I create a component use v component directive together with v if the ready hook be not call js var ready spy var parent new vue template datum showprofile false component user profile template user profile ready ready... |
vuejsvue | textarea placeholder be set into textarea value ie11 | Bug | there be a weird behavior of textarea in vue 0 11 and ie10 ie11 textarea s value be take out of placeholder attribute js var vm new vue datum function return value template vm mount vm appendto document body assert equal vm value this result in ... |
vuejsvue | v repeat and watch datum | Bug | I try watch v repeat item with this watch datum I expect this callback fire when that child modify but when change each child fire all child s callback be this bug short example watch data sample bug watch item sample maybe right |
vuejsvue | weird option be append | Bug | please look at below sample code fourth option as a be append if all key include dot character and all key before dot have same character this problem seem to be happen |
vuejsvue | v if behavior differ when give a property key versus an expression | Bug | this jsfiddle demonstrate the v if directive behave differently in seemingly equivalent scenario it work as expect when v if be give a simple property key but expression and compute property appear to cause the content of the v if to be evaluate even when the result be falsy |
vuejsvue | watch misbehave when use with v with | Bug | check out this example the alert be only suppose to fire on change to the title keypath however it fire on any change to the vm |
vuejsvue | v enter never append | Bug | edit the v enter accord to what I ve find online be only apply for a split second just long enough to trigger the animation original content run v10 4 when v transition be enable the v leave be append to the classlist of the leaving element but v enter be not apply to the newly create element I have ... |
vuejsvue | key filter break when vm have component | Bug | this be a really weird bug that I run into but I ve boil it down to a simple test case and it really do seem to be a legit bug when a vm have the component property set any key filter use in directive in the component template or root template cease to function properly simple test case you ll noti... |
vuejsvue | directive method call don t support object param | Bug | I have a directive that call a sort method and pass an object of option name but I get two error error parse expression sortrow column name directive v on click sortrow column name expect a method I would expect this to work instead of accept only primitive param |
vuejsvue | index for primitive value be not track properly | Bug | only happen when there be duplicate |
vuejsvue | problem with nest v repeat directive | Bug | hi when I nest 2 v repeat directive inner directive content be recreate on every model update apart form performance penalty this result in loose html input focus take a look |
vuejsvue | over render with a lot of nest view and compontent | Bug | so while look at the fiddle it seem that vue be over render in case with nest object in a repeat element the good way to test the fiddle be to simple type something in one of the input basically the entire view re render for no reason make it seem that after every time you type in an input a blur event occu... |
vuejsvue | problem with v repeat and remove all | Bug | hi I have find a problem with v repeat when you remove all item of a list and set a value of a remove item during the same frame item will reappear in the list and link view too you can see this fiddle for a real example the newvalue should not be visible because all item of the list have be remove ... |
vuejsvue | ie doesn t allow setattribute style | Bug | kinda annoying when use inside style |
vuejsvue | bug of function removeclass | Bug | vue js for dev line 817 removeclass funciton else branch assume el classname red yellow green el classname red yellow green replace yellow trim will be redgreen not red green ... |
vuejsvue | async problem when swap a v repeat array | Bug | uncaught notfounderror fail to execute insertbefore on node the node before which the new node be to be insert be not a child of this node build js 3073 anonymous function build js 3073 changestate build js 2621 module export build js 2647 module export builditem build js 3072 ... |
vuejsvue | improve observer performance | Bug | when an object be observe by many anonymous expression binding 100 the new viewmodel instantiation get increasingly slow currently have no idea why but it have something to do with the exp parser anon directive thing need to do more profiling |
vuejsvue | dependency tracking for nest value | Bug | e g a b a c doesn t catch any dependency |
vuejscore | keepalive transition v if 2 bug | Bug | vue version 3 4 21 link to minimal reproduction step to reproduce stackblitz bug bug keepalive transition v if toggle v if image 1 keepalive ... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.