Vue.Simple.Template 0.7.0

dotnet new install Vue.Simple.Template::0.7.0
This package contains a .NET Template Package you can call from the shell/command line.

Vue Simple Template Mit License

This template was created to interact with a vue.js project inside an asp.net core app using the Spa Services library. It aims to be minimalistic with its approach. It also favors Vue's single file component over Typescript, since one of the efforts is to minimize friction when transitioning from a vue-cli project into this template.

This template targets net 6.0

Builds

Appveyor Branch
Build status master

Packages

NuGet (Stable) MyGet (Prerelease)
NuGet MyGet

Prerequisites

You must have net 6.0 installed. It also depends on Node.js (version 14) and npm (version 6) must exist in order to use the Vue Client App. The project will not compile if Node.js or Npm aren't present.

Installation

To install the template, via command line simply using nuget:

dotnet new -i "Vue.Simple.Template::*"

where * is the equivalent of the latest version of the template.

If you would like to tinker with the code locally, you can clone the repository and execute the following command with the dotnet command, using the path of the repo:

dotnet new -i "$PATH_OF_NUPKG_FILE"

Alternatively, you can use the myget prerelease package, by installing using the following command:

dotnet new -i "Vue.Simple.Template::*" --nuget-source https://www.myget.org/F/vue-simple-template/api/v3/index.json

Once installed as a template you can properly create your own custom projects using the template using the following command:

dotnet new simplevue -o MyAppName

It will generate the following folder structure:

$
.
├── .editorconfig
├── appsettings.Development.json
├── appsettings.json
├── Program.cs
├── Startup.cs
├── {ProjectName}.csproj
├── {ProjectName}.sln
├── /ClientApp
│   ├── package.json
│   ├── package-lock.json
│   ├── jsconfig.json
│   ├── babel.config.js
│   ├── vue.config.js
│   ├── /public
│   │    ├── favicon.ico
│   │    └── index.html
│   ├── /src
│   │    ├── main.js
│   │    ├── App.vue
│   │    ├── /assets
│   │    │    └── logo.png
│   │    └── /views
│   │         └── HelloWorld.vue
│   │
│   └── /node_modules
├── /Controllers
│   └── MainController.cs
└── /Views
    ├── _ViewStart.cshtml
    ├── _ViewImports.cshtml
    ├── /Shared
    │    └── _Layout.cshtml
    └── /Main
         └── Index.cshtml

Then proceed to:

cd MyAppName
npm install

The ClientApp folder includes the default project created using the vue-cli 3.0. You can (optionally) replace the contents of the clientApp folder with your own custom vue project, since this template interacts directly with the vue commands, for building and debugging purposes.

For more information on how to interact with the new vue-cli 3.0, you can check this tutorial

Vue-Cli also has the ability to scaffold an app using vue ui which is an alternative to the command line vue installation.


Uninstalling

The syntax for uninstalling from the command line is the following:

dotnet new -u "Vue.Simple.Template"

Or

dotnet new -u "$PATH_OF_NUPKG_FILE"

Previous Versions

The table below includes the latest template version alongside the netcore version which it targets

net(core) version template version
6.0 0.7.0
5.0 0.6.1
3.1 0.5.0
3.0 0.4.1
2.2 0.3.6
2.1 0.2.3

These are all available on nuget

Further info

For More information on how to manage dotnet custom templates see the docs.microsoft documentation

Contributing

Check the contribution guide

  • net6.0

    • No dependencies.

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.7.0 2,099 5/26/2022
0.6.0 3,794 2/6/2021
0.5.0 1,511 11/10/2020
0.4.4 1,830 4/17/2020
0.4.3 1,668 2/1/2020
0.4.2 1,793 12/16/2019
0.4.1 1,624 10/25/2019
0.4.0 1,348 10/11/2019
0.3.7 1,791 10/3/2019
0.3.6 1,461 7/18/2019
0.3.5 1,517 7/5/2019
0.3.4 1,589 6/12/2019
0.3.3 1,628 6/3/2019
0.3.2 1,649 3/11/2019
0.3.1 1,986 1/11/2019
0.3.0 1,831 12/20/2018
0.2.3 1,676 10/23/2018
0.2.2 1,698 10/19/2018
0.2.1 1,904 10/5/2018
0.2.0 1,601 9/30/2018
0.1.8 2,133 6/20/2018
0.1.7 1,996 6/13/2018
0.1.6 2,430 3/25/2018
0.1.5 2,070 1/27/2018
0.1.4 2,505 9/8/2017
0.1.3 1,719 9/8/2017
0.1.2 2,097 9/8/2017

Target to net 6.0