Skip to content

Releases: Paneon/php-vue-to-twig

Adds partially concat support

30 Jul 12:31
d1e463a
Compare
Choose a tag to compare
Merge pull request #62 from tronsha/feature/concat

Adds partially concat support

Fixed slots

30 Jul 10:13
6f19e09
Compare
Choose a tag to compare
Merge pull request #63 from tronsha/bugfix/named-slots

Merged without review, because the fix is needed.

Add named slots support

30 Jul 06:20
b6e4ff1
Compare
Choose a tag to compare

Fix class-bindings for included child-components

28 Jul 11:47
a0878f2
Compare
Choose a tag to compare

Added style to include.

Fixed the Issue #48
Class binding is now also possible for include.

Fixed the Issue #49
Ignore whitespace between value and colon.

Added data-twig-remove.

Fix nested if

22 Jul 11:37
22b11c7
Compare
Choose a tag to compare

Fix nested if
Fix binding for all encoded attributes
Create php.yml

Fix template strings and src tags

17 Jul 07:19
34a4238
Compare
Choose a tag to compare

Fix expression code output in template strings
Fix problem with the url encoding in src tags

Add Support for v-text

10 Mar 09:50
f0b3427
Compare
Choose a tag to compare

Add Support for v-text
Add HTML output cleanup
Fix slot

Add Support for v-html

11 Feb 08:18
1bbf6fb
Compare
Choose a tag to compare
0.18.0

Update README.md

Extend the flexibility of the Prop decorator syntax

31 Jan 13:28
ce8247d
Compare
Choose a tag to compare

Added support for these patterns:

@Prop({ default: 'I\'m a text' }) readonly propPresentWithApostrophe!: string;
@Prop({ default: '[email protected]' }) readonly propPresentWithAt!: string;

Fix other variants of Prop decorator syntax

31 Jan 10:50
0bce7ad
Compare
Choose a tag to compare

Added support for now ways to declar properties using the Prop decorator.

        @Prop({ type: Boolean, required: true }) ignored: boolean;
        @Prop({ default: false }) propBoolean: string;
        @Prop({ default: '' }) propPresent!: string;
        @Prop({ default: 0, type: Number }) propWithTypeNumber!: number;
        @Prop({ type: String, default: 'foo' }) readonly propPresentWithTypeAndDefault!: string;