Warning: The magic method SFML_Singleton::__wakeup() must have public visibility in /home/public/wp-content/plugins/sf-move-login/inc/classes/class-sfml-singleton.php on line 72
vue – Thoughts, etc.

Thoughts, etc.

Tracking the occasional random walk

vue

Measuring distances on Leaflet maps in Vue applications

2019-04-25 / 2 Comments

Vue2LeafletĀ is a great library that provides a very straightforward approach to using Leaflet maps in Vue applications. Leaflet.PolylineMeasure is a great Leaflet plugin that adds a tool to allow the user to measure distances along (poly)lines by drawing them on top of the map. Today I released the initial version of a Vue2Leaflet plugin to … [Read more…]

Posted in: open source Tagged: leaflet, vue

Adding Vue reactivity to js-data relationships

2018-05-16 / 3 Comments

While attempting to have Vue components react to changes in my js-data model instances and their relationships, I found a great post from Caleb Roseland with an accompanying code example. They detail how to make model properties reactive in Vue, without overriding js-data’s own reactivity. What they don’t discuss is how to make Vue react … [Read more…]

Posted in: front-end Tagged: js-data, vue