NO LONGER MAINTAINED: Please migrate to http://chat.vuejs.org/ for the new and improved community chat
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)
yyx990803 on dev
fix: fix child forceUpdate regr… (compare)
yyx990803 on dev
fix: fix v-bind:style for camel… (compare)
yyx990803 on dev
chore: update sponsors [ci skip… (compare)
yyx990803 on patreon-update-1548947041032
vue-bot on patreon-update-1548947041032
chore: update sponsors [ci skip] (compare)
yyx990803 on patreon-update-1548924868622
yyx990803 on dev
fix: allow more enumerated valu… (compare)
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
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.....
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???
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 // ??????
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.
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......