TitanFighter

Results 83 comments of TitanFighter

``` computed: { player () { return this.$refs.youtube.player } }, mounted () { this.player.addEventListener('onStateChange', this.youtubStateChange) }, methods: { youtubStateChange (youtubeState) { console.log('youtubeState:', youtubeState) } } ```

Use `alwaysOpen` param. Here is the example: https://vue-treeselect.js.org/#more-features

> I want itself close menu when I want set `alwaysOpen=false` when you want. This is a hack. There is no direct approach.

Just track / watch selection and update / change `label` of parent item. ``` export default { // register the component components: { Treeselect }, data() { return { //...

> Need to figure out a better way to handle SQL structure update automatically. Any suggestions? I do not know it is suitable in this project, but in our Python...

So, there should be three stages of minimization: 1. Hidden (current implementation). 2. Super minimized, useful on mobiles (left blue line/bar should be swipable): ![image](https://user-images.githubusercontent.com/12687911/78472263-042ea700-7740-11ea-8775-6ede012c3f55.png) 3. Partially minimized: ![image](https://user-images.githubusercontent.com/12687911/78472319-70a9a600-7740-11ea-9108-101ce537ea91.png)

@rylax in your commit it is necessary to restore the 25th line `},` in order to close `async load(key, callback) {` in `lib/cache.js`. The rest is ok and everything works.

As I understand the default value of isSsr is "false" and as I understand you want to transfer server side value to the client, right? If I remember correctly it...

I had similar situation long time ago and if I remember correctly I came to the conclusion that: in case of "never" LazyHydrate simply reads default value of variable (as...