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
<script setup lang="ts"> | |
import { reactive } from "vue"; | |
const toast = reactive({ | |
message: "", | |
options: { | |
title: "", | |
}, | |
visible: false, | |
}); |
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
# remove via choco if used | |
choco uninstall pnpm | |
$chocolatey_install = [Environment]::GetEnvironmentVariable('ChocolateyInstall', 'Machine') | |
rm $chocolatey_install\bin\pnpm* -Recurse -Force | |
rm $chocolatey_install\bin\pnpx* -Recurse -Force | |
# remove home folder | |
$pnpm_home = [Environment]::GetEnvironmentVariable('PNPM_HOME', 'User') | |
rm $pnpm_home -Recurse -Force |
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
using System.Linq; | |
using System.Web.Mvc; | |
using Telerik.Sitefinity.Frontend.Mvc.Helpers; | |
using Telerik.Sitefinity.Modules.Pages; | |
namespace SitefinityWebApp.Custom | |
{ | |
public static class SfCustomHtmlHelpers | |
{ | |
public static MvcHtmlString ScriptAsync(this HtmlHelper helper, ScriptRef scriptReference) |