File tree Expand file tree Collapse file tree 2 files changed +9
-0
lines changed
src/FilterExpressionParsing Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,12 @@ in the [Wikibase Lexeme extension](https://www.mediawiki.org/wiki/Extension:Wiki
77It intentionally covers only a subset of Vue Template syntax that is used by the Wikibase
88Lexeme extension. It is not going to cover all elements of Vue Template language.
99
10+ ## Migration notes
11+
12+ For the purpose of migrating to Vue 3, very basic support for the method syntax was added as an alternative to filters.
13+ In order to keep the interface stable, method callbacks should also be provided as the third parameter when calling
14+ ` Templating::render() ` .
15+
1016## Installation
1117
1218The recommended way of installing the library is using [ Composer] ( https://getcomposer.org ) ,
Original file line number Diff line number Diff line change 22
33namespace WMDE \VueJsTemplating \FilterExpressionParsing ;
44
5+ /**
6+ * This represents both calls to a filter and calls to a method.
7+ */
58class FilterCall {
69
710 /**
You can’t perform that action at this time.
0 commit comments