Where communities thrive


  • Join over 1.5M+ people
  • Join over 100K+ communities
  • Free without limits
  • Create your own community
People
Repo info
Activity
  • Jan 31 22:22
    visualfanatic edited #9403
  • Jan 31 22:04
    visualfanatic opened #9403
  • Jan 31 18:25

    yyx990803 on regression-test

    fix: allow more enumerated valu… chore: update sponsors [ci skip… fix: fix v-bind:style for camel… and 1 more (compare)

  • Jan 31 17:29
    yyx990803 closed #9402
  • Jan 31 17:20
    devedse opened #9402
  • Jan 31 16:49
    Justineo closed #9401
  • Jan 31 16:40
    Giwayume opened #9401
  • Jan 31 15:24
    yyx990803 closed #9396
  • Jan 31 15:24

    yyx990803 on dev

    fix: fix child forceUpdate regr… (compare)

  • Jan 31 15:08
    yyx990803 closed #9382
  • Jan 31 15:08

    yyx990803 on dev

    fix: fix v-bind:style for camel… (compare)

  • Jan 31 15:08
    yyx990803 closed #9386
  • Jan 31 15:04

    yyx990803 on dev

    chore: update sponsors [ci skip… (compare)

  • Jan 31 15:04

    yyx990803 on patreon-update-1548947041032

    (compare)

  • Jan 31 15:04
    yyx990803 closed #9400
  • Jan 31 15:04

    vue-bot on patreon-update-1548947041032

    chore: update sponsors [ci skip] (compare)

  • Jan 31 15:04
    vue-bot opened #9400
  • Jan 31 14:59

    yyx990803 on patreon-update-1548924868622

    (compare)

  • Jan 31 14:58
    yyx990803 closed #9393
  • Jan 31 14:56

    yyx990803 on dev

    fix: allow more enumerated valu… (compare)

DearestLove
@DearestLove
8b4b7eb63112462d9f0dfaedb6bf636a.gif
ImSapphiron
@ImSapphiron
i want to know why input-number can delete default value by undefined , how to use this undefined by 0
Pierrick Gicquelais
@Kafei59
Hi everyone, hope everyone is fine. I have a quick question before bootstrapping a project today. I'm fond of vue in general, but I'm more of a backend/ops person, and I don't like loosing that much time on creating styles and stuff. I'm also using for the first time the vue-cli ui, and I found it wonderfully beautiful. My question is: is there any package/project to bootstrap something and looks like this UI without doing some much on classes/styles ?
Thanks a lot :)
Tanami
@Tanami
@Kafei59 what UI?
MingXangd
@MingXangd
怎么修改头像啊
Bilou
@bilouw
hi guys! I have a question : I want to make a reusable component and share it on npm. I saw that there is library component and plugin. Can someone explain me what the difference ? Should i make a component library or a plugin ? I think that a plugin is for more complex logic, and a library should be enough for my case but i'm not sure.
maysam senaps
@senaps
I have a backend that isn't on the internet and only internal network of an organization, we are using a self signed certificate and we are getting errors on certificate. isn't there any way so that socket io ignores this? we are using vue_socket_io.
C0DE_MONKEY
@fftaken
Hello
how can I use vuex in vue plugin
matrixbot
@matrixbot

KB1RD > <@gitter_senaps:matrix.org> I have a backend that isn't on the internet and only internal network of an organization, we are using a self signed certificate and we are getting errors on certificate. isn't there any way so that socket io ignores this? we are using vue_socket_io.

If it’s on a client web browser, there’s no way to do that. The web browser handles validation of the certificate. You could create your own CA and tell each client to trust it in their browser (no idea how to do this. It’s also a significant security risk). You could also just use LetsEncrypt certificates

LibarMu
@LibraMu
英语不好的是不是该退群了
Judy228
@Judy228
hello
Wanghuan
@eproduce
@MingXangd github账户的头像
Gilberto
@gilbertoDev_twitter
hello im new here
samayo
@samayo
hello new :)
Engjell Bislimi
@Engjell00
Hey guys, Does anyone use Buefy Tables ??
prog20901
@prog20901

I have a tamil PDF which has embedded font...I tried in many softwares but nothing gets converted to word....Even in worst case, got converted with many tricks, Still the converted word doesn't have unicode text or unable to convert the font to unicode...Unable to change the font to a different font or different unicode font....

The only way.....

  1. Convert a PDF file to Images - each page with each image
  2. Give the image to Google Cloud Vision OCR. It gives 100% unicode text where we can change the font.
  3. Prepare the document

The above process is very time consuming and cumbersome process.

Do we have anything or any software to Convert PDF to Unicode Word Document ???

If not, is something is possible as below

a. Support PDF file conversion to Text. Internally convert each page to image and get the contents in Text
b. Capture the formats, lines, spaces in PDF
c. Create a Word Document by applying the text with format
d. Option to download the Word Document

Does any other software does this???

Edmond Mensah
@EDDYMENS
Hey guys, I am currently using on:change to monitor for when a field changes to update the record in the db , but when the user clears the input feild, leaving it empty , on change is unable to detect this , is there a way to go around this?
maysam senaps
@senaps
is this issues are fixed ?
sephv
@SephVelut

If I have Component1

<template>
<div> <slot></slot> </div>
</template

<script>
export default {}
</script>

and Component2

<template>
<div> {{ someProp }} </div>
</template

<script>
export default {
    props: {
        someProp: String
    }
}
</script>

And I want to create those components with

var Comp1 = Vue.extend(Component1)
var Comp2 = Vue.extend(Component2)

var instance1 = new Comp1()
var instance2 = new Comp2()

How do I set the Slot for instance1 as instance2?

instance1.$slot.default = instance2 // ??????
prog20901
@prog20901
i see vue.js is just one single js file
i was shocked to see how come one single file works great and awesome and support huge apps and cross platform ....
i made me think is that having everything in 1 file is good practice or cause maintenance issue?
Jon Paul Uritis
@jppope
good practice
prog20901
@prog20901
why vue.js is designed to have everything in one file, instead of having in multiple files and make the maintenance easy
Jon Paul Uritis
@jppope
components are in one file
I.E. a unit of work
give it a try... you'll be surprised
prog20901
@prog20901
if that's a good practice why it is not folllowed by other JS frameworks..just for learning purpose i am just asking this question...
example, angular
Jon Paul Uritis
@jppope
its actually a practice in react
the only difference is that the styles are in JS which is a little quirky but works
angular I don't know enough to comment about
Eric
@sliceofbytes
@prog20901 I think the main advantage of separate files is it's easier on the linters / tooling. As long as the tooling can handle everything in one file it's not much of an issue.
Bilou
@bilouw
Hi guys! I started an vuejs project, with typescript (class-component oriented), vuex, and vuexfire. I followed the vuexfire documentation to bind my state, but it just doesn't work. I can retrieve my data if i use the "one time read" method found in vuexfire documentation, but i can't bind my state with bindFirestoreRef. Any clues ?
Bilou
@bilouw
Ok i found, nothing to do with typescript, i just forget to call this.$store.dispatch('myaction') ... I'm nooby with state management ahah
prog20901
@prog20901
@sliceofbytes that's right..Thanks for the info.
Joe Pea
@trusktr

@2pxsolidblack_gitlab

Hi all, is it possible to add Typescript to an existing vue-cli app? Any specific doc I must read?

<script lang="ts"> in your .vue file. Then anything in the script tag can be TypeScript.

(it will complain about a missing loader, or such, then you can npm install it).
vbaulac
@vbaulac
Hi. Is there and elegent way to prevent Vue to go to the watcher when modifying the value from within the code ? I want the watcher so when the user edit the value from the UI, it does some logic, but when I edit this value from the code (fetch from API), I don't want this logic to be executed. Something like accessing the _private field compared to accessing the Setter in higher lvl language.
step_koreik
@nurbek91_gitlab
Hi Guys . How i can get td old content and new changed content after click and compare with each other for calling animation ?
Joe Pea
@trusktr
@vbaulac Why not store the value on a non-reactive regular JS property, for internal use?

F.e., in the created method, you can set regular properties:

created() {
  this.whatever = 123 // non-reactive
}

then for user-only reactive props, just make a separate one, and if you need to modify the internal one based on the external prop change, you can use a watcher for that. Seems that if you do it the other way, it will be hacky and not the way Vue is intended to be used.

prog20901
@prog20901

After huge research, i am planning to go with JavaScript Search engine with Angular/Vue.js/Meteor/React as front-end

Choice of javascript client side storage is below

1) IndexedDB
2) JScene
3) LargeLocalStorage
4) ydn db
5) PouchDB

Links for reference

https://github.com/tantaman/LargeLocalStorage
https://gist.github.com/inexorabletash/a279f03ab5610817c0540c83857e4295
http://lintool.github.io/JScene/
https://db-engines.com/en/system/LokiJS%3BPouchDB%3BSolr

Please kindly suggest which one to go...

Basically have a cross platform system which accepts huge files and finally does a full text search...

In this way, the user just needs the browser no installation is required......

Joe Pea
@trusktr
Yep, the benefits of the web!