AshleyLv / vue-quick-menu

This is web navigation component base on vue2.0+. It can be used in both PC and mobile.
MIT License
221 stars 45 forks source link

Attach URL in the buttons #3

Closed ridwankustanto closed 6 years ago

ridwankustanto commented 6 years ago

I'm new at vue js, and this is Awesome!! But, I want to know how to attach the link to buttons menu? I've already defined list of array that contains URL, but I cant click it.

<quick-menu :menuCount=menu.count :position=menu.pos :backgroundColor=menu.color :iconClass=menu.icons :menuUrlList=menu.lists></quick-menu>

Props:

menu: { count: 4, color: "#2f3131", pos: "bottom-right", icons: ["fa fa-envelope", "fa fa-twitter", "fa fa-linkedin", "fa fa-code"], lists: ["www.test.com", "www.test.com", "www.test.com", "www.test.com"] }

Am I doing wrong? Thank you.

AshleyLv commented 6 years ago

Hi, if you just want to use the normal link, I recommend you to use v1.0.6. In the latest version I change the object of menuUrlList to support vue-router. It can support the normal link as well, but you need to change the object of menuUrlList and implement the open link part in the callback function. There is a demo page of how does it work for v1.0.7 on github. Also you can find the acceptable object of menuUrlList prop in read me. Hope this helps^_^

Ashley

Sent from my iPhone

On 13 May 2018, at 12:07, ridwankustanto notifications@github.com wrote:

I'm new at vue js, and this is Awesome!! But, I want to know how to attach the link to buttons menu? I've already defined list of array that contains URL, but I cant click it.

Props:

menu: { count: 4, color: "#2f3131", pos: "bottom-right", icons: ["fa fa-envelope", "fa fa-twitter", "fa fa-linkedin", "fa fa-code"], lists: ["www.test.com", "www.test.com", "www.test.com", "www.test.com"] }

Am I doing wrong? Thank you.

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub, or mute the thread.

ridwankustanto commented 6 years ago

Wow, thanks! Now it works like a charm. ^^