Alpine.TagHelpers
0.1.0
dotnet add package Alpine.TagHelpers --version 0.1.0
NuGet\Install-Package Alpine.TagHelpers -Version 0.1.0
<PackageReference Include="Alpine.TagHelpers" Version="0.1.0" />
paket add Alpine.TagHelpers --version 0.1.0
#r "nuget: Alpine.TagHelpers, 0.1.0"
// Install Alpine.TagHelpers as a Cake Addin
#addin nuget:?package=Alpine.TagHelpers&version=0.1.0
// Install Alpine.TagHelpers as a Cake Tool
#tool nuget:?package=Alpine.TagHelpers&version=0.1.0
Alpine.TagHelpers
Alpine.js Tag Helper for ASP.NET Core Razor Views.
Installation
dotnet add package Alpine.TagHelpers
Usage
alpine-data
Tag Helper
Renders a .NET object as JavaScript (not JSON) object inside the Alpine x-data
attribute.
Register the Tag Helpers in _ViewImports.cshtml
@addTagHelper *, Alpine.TagHelpers
Use the alpine-data
Tag Helper:
<div alpine-data="new { Open = false }">
<button x-on:click="open = !open">Show</button>
<div x-show="open" x-cloak>Some details...</div>
</div>
Result:
<div x-data="{open:false}">
<button x-on:click="open = !open">Show</button>
<div x-show="open">Some details...</div>
</div>
Samples
Samples can be found inside the samples
folder.
License
MIT License
Copyright (c) 2023 Alexander Zeitler
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Product | Versions |
---|---|
.NET | net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows net7.0 net7.0-android net7.0-ios net7.0-maccatalyst net7.0-macos net7.0-tvos net7.0-windows |
.NET Core | netcoreapp3.1 |
-
.NETCoreApp 3.1
- Newtonsoft.Json (>= 13.0.2)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
0.1.0 | 184 | 1/16/2023 |
0.0.0-alpha.0 | 47 | 1/16/2023 |