Giter Club home page Giter Club logo

Comments (9)

BigBlueHat avatar BigBlueHat commented on May 8, 2024

You don't actually need jQuery. 😁
http://jsbin.com/kabel/1/edit

Oh! and very nice demo, btw. 🍰

from discussion.

rafaelrinaldi avatar rafaelrinaldi commented on May 8, 2024

@BigBlueHat Hehe I was depending on jQuery because the actual snippet was bigger.

Still using the workaround I mentioned.

from discussion.

BigBlueHat avatar BigBlueHat commented on May 8, 2024

Ah. 😃 I was able to use v-model="value" in vue-schema:
https://github.com/BigBlueHat/vue-schema/blob/master/index.html#L13

That seems close to what you want, but I wasn't able to sort out the particular checkbox scenario in the JSBin. Will keep thinking on it though. 😄

from discussion.

rafaelrinaldi avatar rafaelrinaldi commented on May 8, 2024

@yyx990803 Any idea on how to achieve this? I have the scenario where I have a component that associate an input element to a model (the example I gave above). It was ok when I had 3 of them but now I have 15 and creating them manually is not acceptable.

from discussion.

rafaelrinaldi avatar rafaelrinaldi commented on May 8, 2024

@yyx990803 I've made another snippet for your better understanding. Check it out.

As you can see I have a few input fields who are tied to specific models. The best case scenario for me is to define the input field as a component and iterate through them dynamically so I don't need to create them manually. Something like:

new Vue({
  // ...
  data: {
    // Defining my fields list
    fields: [
      {id: 'name', title: 'Your name'},
      {id: 'email', title: 'Your email'},
      {id: 'url', title: 'Your URL'}
    ]
  },

  components: {
    // Defining inner app component "user-input" that will make use of the data of the main Vue instance 
    'user-input': {
      template: '<div class="user-input" v-repeat="field: fields"><label for="{{field.id}}">{{field.title}}</label><input type="text" id="{{field.id}}" v-model="{{field.id}}"></div>'
    }
  }
  // ...
});

The whole point is to be able to dynamically create items and set their models.

from discussion.

yyx990803 avatar yyx990803 commented on May 8, 2024

Pushed yyx990803/vue@8cd19f0 to dev branch which should achieve what you proposed - try it out!

from discussion.

rafaelrinaldi avatar rafaelrinaldi commented on May 8, 2024

@yyx990803 Great! Thanks Evan! Though it works as I always expected, lazy option seems to be ignored now. Take a look.

from discussion.

rafaelrinaldi avatar rafaelrinaldi commented on May 8, 2024

@yyx990803 Any idea why lazy is being ignored?

from discussion.

rafaelrinaldi avatar rafaelrinaldi commented on May 8, 2024

Closing this since the latest release fixes all the issues I've addressed here ✌️

from discussion.

Related Issues (20)

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.