Giter Club home page Giter Club logo

Comments (6)

luveqz avatar luveqz commented on July 28, 2024

Hi, Oliver. Thanks for your kind words. Do you have an example of how that component would look like?

from vue-3-carousel-tutorial.

jamols09 avatar jamols09 commented on July 28, 2024

Somewhat like this I can also set the maximum number of tags so the input field would not expand when there are many tags. https://github.com/vueform/multiselect

from vue-3-carousel-tutorial.

luveqz avatar luveqz commented on July 28, 2024

Oh, at first glance it looks like it would have this structure:

<div class="container">
  <div class="tag-list">
    <div class="tag"></div>
  </div>
  <input v-model="search">
</div>

And then the input disappears when .container is no longer focused. It doesn't seem that complicated. What do you think?

from vue-3-carousel-tutorial.

jamols09 avatar jamols09 commented on July 28, 2024

You're right think that is the main structure (also from the video I've seen).
I think the more complicated part is the making of dropdown ? (probably) because it has to be done from scratch and also the dynamic width input width size.

from vue-3-carousel-tutorial.

luveqz avatar luveqz commented on July 28, 2024

Well, a <datalist> may be helpful:

<input id="color" list="suggestions">
<datalist id="suggestions">
    <option value="Black">
    <option value="Red">
    <option value="Green">
    <option value="Blue">
    <option value="White">
</datalist>

https://teamtreehouse.com/community/creating-a-suggestion-list-for-html-form-input-elements

from vue-3-carousel-tutorial.

luveqz avatar luveqz commented on July 28, 2024

Having a good foundation of CSS can really untie your creativity.

from vue-3-carousel-tutorial.

Related Issues (1)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.