Skip to content

Commit d475e50

Browse files
Integrated latest changes at 11-29-2024 7:30:18 AM
1 parent 1bcef21 commit d475e50

File tree

4 files changed

+7
-8
lines changed

4 files changed

+7
-8
lines changed

ej2-vue/code-snippet/auto-complete/getting-started-cs12/index.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
#app {
66
color: #008cff;
77
height: 40px;
8-
left: 35%;
8+
left: 10%;
99
position: absolute;
1010
top: 35%;
11-
width: 30%;
11+
width: 80%;
1212
}

ej2-vue/code-snippet/auto-complete/getting-started-cs13/index.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
#app {
66
color: #008cff;
77
height: 40px;
8-
left: 35%;
8+
left: 10%;
99
position: absolute;
1010
top: 35%;
11-
width: 30%;
11+
width: 80%;
1212
}

ej2-vue/code-snippet/schedule/recur-editor-cs4/app.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ export default {
2929
mounted: function () {
3030
let recObject = this.$refs.EditorObj;
3131
this.dates = recObject.getRecurrenceDates(new Date(2018, 0, 7, 10, 0), 'FREQ=DAILY;INTERVAL=1; COUNT=30', '20180108T114224Z,20180110T114224Z', 10, new Date(2018, 0, 7));
32-
this.dates = dates;
3332
}
3433
}
3534
</script>

ej2-vue/getting-started/vue-3-js-composition.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ The `Composition API` is a new feature introduced in Vue.js 3 that provides an a
2020

2121
## Set up the Vite project
2222

23-
A recommended approach for beginning with Vue is to scaffold a project using [Vite](https://vitejs.dev/). To create a new Vite project, use one of the commands that are specific to either NPM or Yarn.
23+
A recommended approach for beginning with Vue is to scaffold a project using [Vite](https://vite.dev/). To create a new Vite project, use one of the commands that are specific to either NPM or Yarn.
2424

2525
```bash
2626
npm create vite@latest
@@ -97,7 +97,7 @@ yarn add @syncfusion/ej2-vue-grids
9797

9898
## Import Syncfusion CSS styles
9999

100-
You can import themes for the Syncfusion Vue component in various ways, such as using CSS or SASS styles from npm packages, CDN, CRG and [Theme Studio](https://ej2.syncfusion.com/vue/documentation/appearance/theme-studio/). Refer to [themes topic](https://ej2.syncfusion.com/vue/documentation/appearance/theme/) to know more about built-in themes and different ways to refer to themes in a Vue project.
100+
You can import themes for the Syncfusion Vue component in various ways, such as using CSS or SASS styles from npm packages, CDN, CRG and [Theme Studio](https://ej2.syncfusion.com/vue/documentation/appearance/theme-studio). Refer to [themes topic](https://ej2.syncfusion.com/vue/documentation/appearance/theme) to know more about built-in themes and different ways to refer to themes in a Vue project.
101101

102102
In this article, `Material` theme is applied using CSS styles, which are available in installed packages. The necessary `Material` CSS styles for the Grid component and its dependents were imported into the `<style>` section of **src/App.vue** file. Vite app generates a default `styles.css` file which we do not need for this example. Before running the sample, delete the content of `src/style.css` or remove the file if it's unused.
103103

@@ -137,7 +137,7 @@ Follow the below steps to add the Vue Grid component using `Composition API`:
137137
{% endhighlight %}
138138
{% endtabs %}
139139

140-
2.In the `template` section, define the Grid component with the [dataSource](https://ej2.syncfusion.com/vue/documentation/api/grid#datasource) property and column definitions.
140+
2.In the `template` section, define the Grid component with the [dataSource](https://ej2.syncfusion.com/vue/documentation/api/grid/#datasource) property and column definitions.
141141

142142
{% tabs %}
143143
{% highlight html tabtitle="~/src/App.vue" %}

0 commit comments

Comments
 (0)