Releases: Paneon/php-vue-to-twig
Releases · Paneon/php-vue-to-twig
Adds partially concat support
Merge pull request #62 from tronsha/feature/concat Adds partially concat support
Fixed slots
Merge pull request #63 from tronsha/bugfix/named-slots Merged without review, because the fix is needed.
Add named slots support
Add named slots support:
https://vuejs.org/v2/guide/components-slots.html#Named-Slots
Fix class-bindings for included child-components
Fix nested if
Fix nested if
Fix binding for all encoded attributes
Create php.yml
Fix template strings and src tags
Fix expression code output in template strings
Fix problem with the url encoding in src tags
Add Support for v-text
Add Support for v-text
Add HTML output cleanup
Fix slot
Add Support for v-html
0.18.0 Update README.md
Extend the flexibility of the Prop decorator syntax
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
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;