Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions ej2-vue/schedule/getting-started-vue-3.md
Original file line number Diff line number Diff line change
Expand Up @@ -233,8 +233,8 @@ const ownerDataSource = [
<script>
data: function () {
return {
selectedDate = new Date(2023, 7, 8),
eventSettings = {
selectedDate: new Date(2023, 7, 8),
eventSettings: {
dataSource: [
{
Id: 1,
Expand Down Expand Up @@ -262,7 +262,7 @@ data: function () {
}
]
},
ownerDataSource =[
ownerDataSource: [
{ OwnerText: "Nancy", Id: 1, OwnerColor: "#ffaa00" },
{ OwnerText: "Steven", Id: 2, OwnerColor: "#f8a398" },
{ OwnerText: "Michael", Id: 3, OwnerColor: "#7499e1" }
Expand Down Expand Up @@ -391,8 +391,8 @@ export default {
},
data: function () {
return {
selectedDate = new Date(2023, 7, 8),
eventSettings = {
selectedDate: new Date(2023, 7, 8),
eventSettings: {
dataSource: [
{
Id: 1,
Expand Down Expand Up @@ -420,7 +420,7 @@ export default {
}
]
},
ownerDataSource =[
ownerDataSource: [
{ OwnerText: "Nancy", Id: 1, OwnerColor: "#ffaa00" },
{ OwnerText: "Steven", Id: 2, OwnerColor: "#f8a398" },
{ OwnerText: "Michael", Id: 3, OwnerColor: "#7499e1" }
Expand Down
3 changes: 3 additions & 0 deletions ej2-vue/schedule/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -337,6 +337,9 @@ The output will display the Scheduler with the specified view configuration.
{% highlight html tabtitle="~/src/App.vue" %}
{% include code-snippet/schedule/view-cs1/app.vue %}
{% endhighlight %}
{% highlight html tabtitle="~/src/datasource.js" %}
{% include code-snippet/schedule/view-cs1/datasource.js %}
{% endhighlight %}
{% endtabs %}

{% previewsample "page.domainurl/code-snippet/schedule/view-cs1" %}
Expand Down