Table of Contents

Class VueConsts

Namespace
SunamoDevCode
Assembly
SunamoDevCode.dll

Constants and keyword lists for Vue.js source code parsing and generation.

public class VueConsts
Inheritance
VueConsts
Inherited Members
Extension Methods

Fields

Cl

Class keyword with trailing space.

public const string Cl = "class "

Field Value

string

Constructor

Constructor keyword.

public const string Constructor = "constructor"

Field Value

string

ContainsList

Keywords to match using Contains check.

public static List<string> ContainsList

Field Value

List<string>

DontAddRcub

Sections where right curly brace should not be added automatically.

public static List<string> DontAddRcub

Field Value

List<string>

Equal

Characters treated as assignment operators.

public static List<char> Equal

Field Value

List<char>

Export

Export keyword.

public const string Export = "export"

Field Value

string

Import

Import keyword.

public const string Import = "import"

Field Value

string

MethodsRcub

Methods section opening with curly brace.

public const string MethodsRcub = "methods:{"

Field Value

string

PropsRcub

Props section opening with curly brace.

public const string PropsRcub = "props:{"

Field Value

string

SStartWith

Vue component options that should be matched by StartsWith.

public static List<string> SStartWith

Field Value

List<string>

StartWithList

Keywords to match using StartsWith check.

public static List<string> StartWithList

Field Value

List<string>