File tree 2 files changed +36
-11
lines changed
2 files changed +36
-11
lines changed Original file line number Diff line number Diff line change @@ -576,5 +576,26 @@ describe('RouterLink', () => {
576
576
577
577
expect ( el . innerHTML ) . toMatchSnapshot ( )
578
578
} )
579
+
580
+ it ( 'renders an anchor by default' , ( ) => {
581
+ const { el } = factory (
582
+ locations . basic . normalized ,
583
+ { to : locations . basic . string } ,
584
+ locations . basic . normalized
585
+ )
586
+
587
+ expect ( el . children [ 0 ] . tagName ) . toBe ( 'A' )
588
+ expect ( el . children ) . toHaveLength ( 1 )
589
+ } )
590
+
591
+ it ( 'can customize the rendering and remove the wrapping `a`' , ( ) => {
592
+ const { el } = factory (
593
+ locations . basic . normalized ,
594
+ { to : locations . basic . string , custom : true } ,
595
+ locations . basic . normalized
596
+ )
597
+
598
+ expect ( el . innerHTML ) . not . toContain ( '</a>' )
599
+ } )
579
600
} )
580
601
} )
Original file line number Diff line number Diff line change @@ -80,6 +80,7 @@ export const Link = defineComponent({
80
80
type : String ,
81
81
default : 'router-link-exact-active' ,
82
82
} ,
83
+ custom : Boolean ,
83
84
} ,
84
85
85
86
setup ( props , { slots, attrs } ) {
@@ -91,17 +92,20 @@ export const Link = defineComponent({
91
92
} ) )
92
93
93
94
return ( ) => {
94
- return h (
95
- 'a' ,
96
- {
97
- 'aria-current' : link . isExactActive ? 'page' : null ,
98
- onClick : link . navigate ,
99
- href : link . href ,
100
- ...attrs ,
101
- class : elClass . value ,
102
- } ,
103
- slots . default && slots . default ( link )
104
- )
95
+ const children = slots . default && slots . default ( link )
96
+ return props . custom
97
+ ? children
98
+ : h (
99
+ 'a' ,
100
+ {
101
+ 'aria-current' : link . isExactActive ? 'page' : null ,
102
+ onClick : link . navigate ,
103
+ href : link . href ,
104
+ ...attrs ,
105
+ class : elClass . value ,
106
+ } ,
107
+ children
108
+ )
105
109
}
106
110
} ,
107
111
} )
You can’t perform that action at this time.
0 commit comments