This repository has been archived by the owner on Feb 27, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8338a72
commit 18b17da
Showing
8 changed files
with
109 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,22 @@ | ||
<script setup></script> | ||
<div> | ||
<p>Mixed: <span v-text="mixed" /></p> | ||
<p>String: <span v-text="string" /></p> | ||
<p>Default String: <span v-text="defaultString" /></p> | ||
<p>Nullable String: <span v-text="nullableString" /></p> | ||
<p>Int: <span v-text="int" /></p> | ||
<p>Bool: <span v-text="bool" /></p> | ||
<p>Array: <span v-text="array" /></p> | ||
<p>Object: <span v-text="object" /></p> | ||
<p>Nullable Int: <span v-text="nullableInt" /></p> | ||
<p>Nullable Bool: <span v-text="nullableBool" /></p> | ||
<p>Nullable Array: <span v-text="nullableArray" /></p> | ||
<p>Nullable Object: <span v-text="nullableObject" /></p> | ||
<p>Default Int: <span v-text="defaultInt" /></p> | ||
<p>Default Bool: <span v-text="defaultBool" /></p> | ||
<p>Default Array: <span v-text="defaultArray" /></p> | ||
<p>Multiple Types: <span v-text="multipleTypes" /></p> | ||
<p>Data From Method: <span v-text="dataFromMethod" /></p> | ||
<p>Renamed: <span v-text="renamed" /></p> | ||
<p>Mixed: <span v-text="mixed" /> (<span v-text="typeof mixed" />)</p> | ||
<p>String: <span v-text="string" /> (<span v-text="typeof string" />)</p> | ||
<p>Default String: <span v-text="defaultString" /> (<span v-text="typeof defaultString" />)</p> | ||
<p>Nullable String: <span v-text="nullableString" /> (<span v-text="typeof nullableString" />)</p> | ||
<p>Int: <span v-text="int" /> (<span v-text="typeof int" />)</p> | ||
<p>Bool: <span v-text="bool" /> (<span v-text="typeof bool" />)</p> | ||
<p>Array: <span v-text="array" /> (<span v-text="typeof array" />)</p> | ||
<p>Object: <span v-text="object" /> (<span v-text="typeof object" />)</p> | ||
<p>Nullable Int: <span v-text="nullableInt" /> (<span v-text="typeof nullableInt" />)</p> | ||
<p>Nullable Bool: <span v-text="nullableBool" /> (<span v-text="typeof nullableBool" />)</p> | ||
<p>Nullable Array: <span v-text="nullableArray" /> (<span v-text="typeof nullableArray" />)</p> | ||
<p>Nullable Object: <span v-text="nullableObject" /> (<span v-text="typeof nullableObject" />)</p> | ||
<p>Default Int: <span v-text="defaultInt" /> (<span v-text="typeof defaultInt" />)</p> | ||
<p>Default Bool: <span v-text="defaultBool" /> (<span v-text="typeof defaultBool" />)</p> | ||
<p>Default Array: <span v-text="defaultArray" /> (<span v-text="typeof defaultArray" />)</p> | ||
<p>Multiple Types: <span v-text="multipleTypes" /> (<span v-text="typeof multipleTypes" />)</p> | ||
<p>Data From Method: <span v-text="dataFromMethod" /> (<span v-text="typeof dataFromMethod" />)</p> | ||
<p>Renamed: <span v-text="renamed" /> (<span v-text="typeof renamed" />)</p> | ||
<p>JSON: <span v-text="json" /> (<span v-text="typeof json" />)</p> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<?php | ||
|
||
namespace ProtoneMedia\SpladeCore\Attributes; | ||
|
||
#[Attribute] | ||
class VuePropRaw extends VueProp | ||
{ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters