Re: [web2py] Re: For those using ractive or vuejs. I need help !!

2017-02-24 Thread António Ramos
check these https://github.com/web2py/scaffold https://github.com/lucadealfaro/vue_stripe_web2py_shopping_cart 2017-02-22 11:01 GMT+00:00 'John Philip' via web2py-users < web2py@googlegroups.com>: > Thanks Dave, > unfortunately I still haven't managed it. > > regards, > > John > > > On Tuesday, F

Re: [web2py] Re: For those using ractive or vuejs. I need help !!

2017-02-22 Thread 'John Philip' via web2py-users
Thanks Dave, unfortunately I still haven't managed it. regards, John On Tuesday, February 14, 2017 at 8:11:34 PM UTC+1, Dave S wrote: > > > > On Tuesday, February 14, 2017 at 2:55:30 AM UTC-8, John Philip wrote: >> >> Hi Ramon, >> >> since you've had experience using vuejs in web2py I thought I'

Re: [web2py] Re: For those using ractive or vuejs. I need help !!

2017-02-14 Thread António Ramos
havent used vue since dec 2015 but it was working like a charm with web2py... here is my code , use it just to get some ideas... Create a js file and place it inside static folder... main.js (function ($, Vue) { String.prototype.replaceAll = function(str1, str2, ignore) { return this.repl

Re: [web2py] Re: For those using ractive or vuejs. I need help !!

2017-02-14 Thread Dave S
On Tuesday, February 14, 2017 at 2:55:30 AM UTC-8, John Philip wrote: > > Hi Ramon, > > since you've had experience using vuejs in web2py I thought I'd ask you. I > am using a vuejs component library to display a table from a json dataset. > > var Main = { > data() { > return { > tableData:

Re: [web2py] Re: For those using ractive or vuejs. I need help !!

2017-02-14 Thread 'John Philip' via web2py-users
I apologize I meant Ramos...sorry typo. On Tuesday, February 14, 2017 at 11:55:30 AM UTC+1, John Philip wrote: > > Hi Ramon, > > since you've had experience using vuejs in web2py I thought I'd ask you. I > am using a vuejs component library to display a table from a json dataset. > > var Main =

Re: [web2py] Re: For those using ractive or vuejs. I need help !!

2017-02-14 Thread 'John Philip' via web2py-users
Hi Ramon, since you've had experience using vuejs in web2py I thought I'd ask you. I am using a vuejs component library to display a table from a json dataset. var Main = { data() { return { tableData: get_json_data_from_web2py_table } }, methods: { formatter(row, column) { return row.t

Re: [web2py] Re: For those using ractive or vuejs. I need help !!

2015-06-28 Thread António Ramos
I dont use ractive. Only Vuejs and a template inside a script tag is what i learned from the docs and video tutorials. Is the (%name%)

[web2py] Re: For those using ractive or vuejs. I need help !!

2015-06-28 Thread Massimo Di Pierro
I am not sure but I think you are mixing ractive and vue syntax. In ractive you have a and a . The script is rendered in the target. In vue (which you use), the ractive code is in place but you still use a script instead of a div. Massimo On Saturday, 27 June 2015 12:34:31 UTC-5, Ramos wrote

[web2py] Re: For those using ractive or vuejs. I need help !!

2015-06-27 Thread António Ramos
No help :) Im doomed... Em 26/06/2015 17:29, "António Ramos" escreveu: > Hello , > so far so good i created my second vuejs page inside web2py and this time > using components. > > > my doformind.js has some components and changes the delimiters to avoid > colision with curlies. > > Vue.config.de