Skip to content

Commit fc40725

Browse files
committed
a
1 parent d478e03 commit fc40725

File tree

96 files changed

+184
-121
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

96 files changed

+184
-121
lines changed

docs/en/class-component/component-property/code-option-default.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { Prop, Component, Vue } from 'vue-facing-decorator'
33

44
/*
55
6-
Vue option component
6+
Vue options API
77
{
88
props:{
99
p:{

docs/en/class-component/component-property/code-option-required.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { Prop, Component, Vue } from 'vue-facing-decorator'
33

44
/*
55
6-
Vue option component
6+
Vue options API
77
{
88
props:{
99
p:{

docs/en/class-component/component-property/code-option-type.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { Prop, Component, Vue } from 'vue-facing-decorator'
33

44
/*
55
6-
Vue option component
6+
Vue options API
77
{
88
props:{
99
p:{

docs/en/class-component/component-property/code-option-validator.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { Prop, Component, Vue } from 'vue-facing-decorator'
33

44
/*
55
6-
Vue option component
6+
Vue options API
77
{
88
props:{
99
p:{

docs/en/class-component/component-property/code-usage.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { Prop, Component, Vue } from 'vue-facing-decorator'
33

44
/*
55
6-
Vue option component
6+
Vue options API
77
{
88
props:{
99
p:{

docs/en/class-component/component/code-option-components.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ class MyAnotherComponent extends Vue {
77
}
88

99
/*
10-
Vue option component
10+
Vue options component
1111
{
1212
components:{
1313
MyAnotherComponent

docs/en/class-component/component/code-option-directives.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import { Component, Vue } from 'vue-facing-decorator'
33

44
/*
5-
Vue option component
5+
Vue options component
66
{
77
directives:{
88
MyDirective:{}

docs/en/class-component/component/code-option-emits.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import { Component, Vue } from 'vue-facing-decorator'
33

44
/*
5-
Vue option component
5+
Vue options component
66
{
77
emits:['MyEvent']
88
}

docs/en/class-component/component/code-option-expose.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import { Component, Vue } from 'vue-facing-decorator'
33

44
/*
5-
Vue option component
5+
Vue options component
66
{
77
expose:['name']
88
}

docs/en/class-component/component/code-option-inherit-attrs.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import { Component, Vue } from 'vue-facing-decorator'
33

44
/*
5-
Vue option component
5+
Vue options component
66
{
77
inheritAttrs:true
88
}

0 commit comments

Comments
 (0)