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 not appear it seem that vue be replace the element with an unclosed element that have the same attribute this happen even if the element be inside a recognize svg tag e g in the template the only situation where it do not happen be if it s inside an element in environment which use vue common js in my case electron this cause further issue since be not a valid svg element the dom will auto close the contain svg tag before open the which can also cause stringtofragment to fail with uncaught typeerror can not read property tagname of null since node lastchild will no long be the element define by prefix and suffix but instead a text node contain the trail whitespace from the template there be a workaround wrap the element directly with an element wherever it appear however it s unexpected that this would be require and it force some odd contortion compare to just use an unwrapped tag e g the x and y attribute need to appear on the tag instead of the tag and the width and height attribute need to appear on both |
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 prop js I think propsdata should also be a source of validation along with element attribute version 1 0 26 jsfilddle see console version 2 0 0 alpha 8 do not have this problem |
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 what be actually happen vue warn invalid prop type check fail for prop value expect boolean get string find in component suspicion I think it have something to do with whith this comment l20 l21 |
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 give a hint or clarify that this be the expect behavior somehow that would be great |
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 renderer const rendertostre createrenderer let compiletemplate option const re compiletofunction option template preservewhitespace false object assign option re console assert typeof option render function delete option template return option let foo vue extend compiletemplate template datum function return text foobar rendertostre new vue compiletemplate template component foo foo err re console log res output be this a bug or a feature it seem to be resolve in this fix if it be good I will send pullrequest |
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 position what be actually happen the text remove from the end of the string selectionstart attribute be change somehow by vue js p s you can test it on other input element which do not have v model on it everything will work well |
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 transition class be not be remove but when we have some custom transition on start e g slide and we change it to fade then slide transition class be properly remove |
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 frame with origin from access a frame with origin chrome extension ihlenndgcmojhcghmfjfneahoeklbjjh the frame request access have a protocol of https the frame be access have a protocol of chrome extension protocol must match it be fail at js function indoc node win win win window var doc win document documentelement here protocol must match var parent node node parentnode var isindoc doc node doc parent parent parent nodetype 1 doc contain parent if isindoc var frames win frame if frame for var I 0 I frame length I if indoc node frame I return true return isindoc what be expect even with a chrome extension app should run what be actually happen due to the error vue app be not run give a blank screen to user |
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 expect the ready function to be call on the editable component what be actually happen the ready function be never be invoke |
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 change but when I update datum pass to component directly not inside watcher then watcher callback inside custom component be fire properly I notice this issue have appear in 1 0 22 and do not occur in pevious version of vue |
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 component html you will see in the console devtool hello hello hello hello what be expect datum function should be call twice since there be only two instance of vue component what be actually happen datum function call four time quick fix set the datum in the create hook vue component my component create function this datum set your datum here hope this helpful |
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 message appear in console 2 click model log model 1 message appear in console 3 click replace model model be replace 4 click model log model 2 message appear in the console 5 click model log model 2 message appear in the console what be actually happen 1 click model log model 1 message appear in console 2 click model log model 1 message appear in console 3 click replace model model be replace 4 click model log model 2 message appear in the console 5 click model log model 1 message appear in the console |
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 from the markup after be compile what be actually happen all the be attribute be visible in the dom except for the first one html node the behavior be perfectly correct just the be attribute be display as a string thank you |
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 3 p 5 what be expect can I use template v for a in 6 v if a 2 |
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 all work correctly |
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 screenshot of the error |
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 below slot can t be insert into the component view in html insert slot with v for loop slot name be calculate by item item be the way I design this component wire or still there be any other way to solve the problem I understand partial and component can be use in the slot parent to do the same thing but how about just do this with slot since slot content can be write obviously in html file by the way same problem find in vue forum |
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 space and proceed silently what be actually happen vue throw syntax error which halt the app the workaround trim those extra space this problem be very trivial but its effect be not |
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 what be expect 1 alert be show with the content read name 2 n a 3 alert be show with the content read name k what be actually happen the model do not get set when the form be submit note this be a duplicate of issue 2028 I comment after it be close but didn t get any feedback I don t know if anyone be be notify of the comment follow the close of the issue |
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 link step to reproduce just use some fade css transition with v show on any svg element what be expect element fade in and out what be actually happen element fade in but no fade out happen element be just hide update in firefox it s work periodically sometimes strange behavior be also detect |
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 non configurable they can not change anyway so observe they be pointless and also throw an error this bug currently make it impossible to add three js object to vue component without cause this error however a current workaround be to set convertallpropertie true as this trigger check to ensure that non configurable property be not redefine what be actually happen uncaught typeerror can not redefine property |
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 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 a custom directive with bind unbind function mydirective in the template of the second component use the first component wrapper and insert an element with the custom directive inside it so it get render in place of the slot call vm destroy on your instance this should call unbind on the custom directive but it doesn t if you remove v else from the slot in mywrapper everything work as expect my current workaround be simply replace html with html test with late 1 0 15 version |
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 correctly copy the slot div to the right place but also copy it to the default slot body the dom look like this html edit state x x after I close the modal it correctly copy the element to the footer only it s only the first time that I open the model that the problem happen also there s another problem since I m not give any content besides the footer slot the default slot body that be in the component s template should be print so I should see xyz in the body but it s empty here be my template parent html x component html |
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 keep only element from start to start length edit actually use case above can be solve without mutation use slice instead of splice credit to kerruba for raise the issue in chat |
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 vue warn v on click sortby column expect a function value get undefine 0 12 |
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 think the problem lie on when the v for notifie the child on the line of l149 the problem be that on the previous line the execution lead to remove the so follow up when we iterate over the child to notify they they be miss I be still very new to vue js so I may be wrong by the way so far I really like it |
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 the prop check from b or c digest the value of a leave another one nothing by the way be there any suggestion to use compose mixin because of the feature of mixin sometimes some implicit conflict will raise up and not easy to find out and in addition the mixin require the component to obey some implicit interface which lead to hard to maintain the code |
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 partial editor number as the v for version throw warning and an error I believe this to be a bug |
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 2 have start animate in and component 3 wait for it to animate out |
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 issue of v if v cloak mixture |
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 not create a component that only contain a single other component they will be mount to the same element and cause conflict wrap it with an outer element |
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 custom prefix specifically l4 l7 when I make that change I have to move away from use syntax because the site I m build also use vue js and that vue would be the one to catch the custom element rather than the re name one race condition I d reckon if v component go a way entirely I m not sure how you could have two vue js in play without the race condition thought smile cat |
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 range out of order in character class if it can help I m use browserify babel and template be inline in the script |
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 will not have error I can not explain this but its wrong p s sory for bad english |
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 parent mount parent appendto document body parent showprofile true vue nexttick function assert ready call |
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 assertionerror expect aaa to equal all other browser work fine |
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 test some of the example provide as well and notice the same bug I ve increase the transition delay to 10 so that I could watch the effect and see view v leave on the old element but only view on the new element this be obviously break my transition I ve also try append my own enterclass and leaveclass in vue config and notice the same behaviour have anyone else experience this or know what s go on unfortunately I can not let you know if this be work with other version of vue as I m new to this framework and love it thank for the excellent framework |
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 notice that when you run the example you should see console log when you hit enter in both text field however no console line be log if you delete the div v component from the template and the component property from the vm definition and re run the example then a single text input be render and console line be log when you hit enter that seem totally crazy how could the presence of component in the root vm stop all key filter from work this drive I nuts for over an hour wacky |
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 occur and need to reselect the input |
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 nb I really appreciate this library good job edit replace gist by a fidlle |
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 module export update build js 3046 dirproto apply build js 2182 dirproto update build js 2156 bindingproto update build js 1659 flush |
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 v if 2 bug mode out in v if include key onunmounted mode 3 mode out in 4 what be expect bug what be actually happen keepalive transition v if transition mode out in system info no response any additional comment no response vue |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.