diff --git a/.github/actions/download-locales/action.yml b/.github/actions/download-locales/action.yml index db73d7b681a..413566dad88 100644 --- a/.github/actions/download-locales/action.yml +++ b/.github/actions/download-locales/action.yml @@ -11,7 +11,7 @@ runs: using: composite steps: - name: Download eo-UY - uses: crowdin/github-action@v1.12.0 + uses: crowdin/github-action@v1.19.0 with: download_language: eo config: crowdin.yml @@ -21,7 +21,7 @@ runs: export_only_approved: false crowdin_branch_name: ${{ inputs.crowdin-branch }} - name: Download zh-CN - uses: crowdin/github-action@v1.12.0 + uses: crowdin/github-action@v1.19.0 with: download_language: zh-CN config: crowdin.yml diff --git a/.github/actions/nightly-release/action.yml b/.github/actions/nightly-release/action.yml index a36f3e3289b..fe8d525545f 100644 --- a/.github/actions/nightly-release/action.yml +++ b/.github/actions/nightly-release/action.yml @@ -30,7 +30,7 @@ runs: git config --global user.email "actions@github.com" git config --global user.name "GitHub Actions" shell: bash - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 with: repository: ${{ inputs.checkout-repo }} ref: ${{ inputs.checkout-ref }} diff --git a/.github/actions/yarn-install/action.yml b/.github/actions/yarn-install/action.yml index aff639a366f..4148990647f 100644 --- a/.github/actions/yarn-install/action.yml +++ b/.github/actions/yarn-install/action.yml @@ -4,7 +4,7 @@ description: Restore node_modules and cache, then run yarn install runs: using: composite steps: - - uses: actions/cache@v2 + - uses: actions/cache@v4 with: path: | node_modules diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index afe39e48803..ed13ae18105 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,7 +30,7 @@ jobs: if: needs.pre_job.outputs.should_skip != 'true' runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - uses: ./.github/actions/yarn-install - run: yarn build vuetify - uses: ./.github/actions/upload-artifact @@ -50,7 +50,7 @@ jobs: matrix: scopes: ['--scope vuetify --scope @vuetify/api-generator', '--scope vuetifyjs.com'] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - uses: ./.github/actions/download-artifact with: name: vuetify-dist @@ -65,11 +65,11 @@ jobs: if: needs.pre_job.outputs.should_skip != 'true' runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - uses: ./.github/actions/yarn-install - run: yarn run test:coverage -i working-directory: ./packages/vuetify - - uses: codecov/codecov-action@v1 + - uses: codecov/codecov-action@v4 test-cypress: name: Test (Cypress) @@ -77,7 +77,7 @@ jobs: if: needs.pre_job.outputs.should_skip != 'true' runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - uses: ./.github/actions/yarn-install - run: yarn cy:run --record --parallel --ci-build-id $GITHUB_RUN_ID if: ${{ !startswith(github.ref, 'refs/tags/v') && github.repository_owner == 'vuetifyjs' }} @@ -87,7 +87,7 @@ jobs: - run: yarn cy:run if: ${{ !startswith(github.ref, 'refs/tags/v') && github.repository_owner != 'vuetifyjs' }} working-directory: ./packages/vuetify - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v3 if: failure() with: name: cypress-screenshots @@ -99,7 +99,7 @@ jobs: runs-on: ubuntu-latest if: github.event_name == 'push' && startswith(github.ref, 'refs/tags/v') && github.repository_owner == 'vuetifyjs' steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 with: fetch-depth: 0 - uses: ./.github/actions/download-artifact @@ -125,7 +125,7 @@ jobs: if: needs.pre_job.outputs.should_skip != 'true' && github.event_name == 'push' && github.repository_owner == 'vuetifyjs' && (github.ref == 'refs/heads/master' || github.ref == 'refs/heads/dev' || github.ref == 'refs/heads/next') runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - uses: ./.github/actions/download-artifact with: name: vuetify-dist @@ -156,7 +156,7 @@ jobs: runs-on: ubuntu-latest if: github.event_name == 'push' && github.repository_owner == 'vuetifyjs' && (github.ref == 'refs/heads/master' || github.ref == 'refs/heads/dev' || github.ref == 'refs/heads/next') steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - uses: ./.github/actions/download-artifact with: name: docs-dist diff --git a/.github/workflows/crowdin-uploads.yml b/.github/workflows/crowdin-uploads.yml index 45d851527f9..01e839d9f18 100644 --- a/.github/workflows/crowdin-uploads.yml +++ b/.github/workflows/crowdin-uploads.yml @@ -26,10 +26,10 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Upload - uses: crowdin/github-action@v1.12.0 + uses: crowdin/github-action@v1.19.0 with: config: crowdin.yml crowdin_branch_name: ${{ env.CROWDIN_BRANCH }} diff --git a/.github/workflows/nightly-pr.yml b/.github/workflows/nightly-pr.yml index a66ff7b5631..b55f1652a72 100644 --- a/.github/workflows/nightly-pr.yml +++ b/.github/workflows/nightly-pr.yml @@ -12,8 +12,8 @@ jobs: runs-on: ubuntu-latest if: ${{ github.repository_owner == 'vuetifyjs' }} steps: - - uses: actions/checkout@v2 - - uses: actions/github-script@v6 + - uses: actions/checkout@v4 + - uses: actions/github-script@v7 with: script: | const pr = await github.rest.pulls.get({ @@ -32,8 +32,8 @@ jobs: release-id: pr-${{ github.event.inputs.pr }}.${{ env.SHORT_SHA }} npm-tag: pr npm-token: ${{ secrets.NPM_TOKEN }} - - uses: actions/checkout@v2 - - uses: actions/github-script@v6 + - uses: actions/checkout@v4 + - uses: actions/github-script@v7 with: script: | const fullVersion = process.env.FULL_VERSION diff --git a/.github/workflows/nightly-schedule.yml b/.github/workflows/nightly-schedule.yml index 1a796988b79..2429f338b08 100644 --- a/.github/workflows/nightly-schedule.yml +++ b/.github/workflows/nightly-schedule.yml @@ -25,7 +25,7 @@ jobs: - branch: 'v2-dev' tag: 'v2-dev' steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 with: ref: ${{ matrix.branch }} fetch-depth: 0 @@ -45,14 +45,14 @@ jobs: release-id: ${{ matrix.branch }}.${{ env.RELEASE_ID }} npm-tag: ${{ matrix.tag }} npm-token: ${{ secrets.NPM_TOKEN }} - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 percy: name: Visual regression tests runs-on: ubuntu-latest if: ${{ github.repository_owner == 'vuetifyjs' }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 with: ref: master fetch-depth: 0 @@ -73,7 +73,7 @@ jobs: PERCY_BRANCH: master PERCY_TARGET_BRANCH: master PERCY_COMMIT: ${{ env.COMMIT }} - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v3 if: failure() with: name: cypress-screenshots diff --git a/.github/workflows/triage.yml b/.github/workflows/triage.yml index 78345fd0f66..6b25c9fe022 100644 --- a/.github/workflows/triage.yml +++ b/.github/workflows/triage.yml @@ -7,7 +7,7 @@ jobs: triage: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - uses: vuetifyjs/triage-action@master with: token: ${{ secrets.GITHUB_TOKEN }} diff --git a/lerna.json b/lerna.json index 9203879c545..d8a3a31e5d6 100644 --- a/lerna.json +++ b/lerna.json @@ -13,6 +13,6 @@ } }, "npmClient": "yarn", - "version": "3.5.8", + "version": "3.5.9", "useWorkspaces": true } diff --git a/packages/api-generator/package.json b/packages/api-generator/package.json index c15d98935d6..5c60ea205b5 100755 --- a/packages/api-generator/package.json +++ b/packages/api-generator/package.json @@ -1,6 +1,6 @@ { "name": "@vuetify/api-generator", - "version": "3.5.8", + "version": "3.5.9", "private": true, "description": "", "scripts": { @@ -17,7 +17,7 @@ "ts-morph": "^20.0.0", "tsx": "^4.6.2", "vue": "^3.4.19", - "vuetify": "^3.5.8" + "vuetify": "^3.5.9" }, "devDependencies": { "@types/stringify-object": "^4.0.5" diff --git a/packages/api-generator/src/locale/en/VList.json b/packages/api-generator/src/locale/en/VList.json index 742a35ec945..f2db19cf83b 100644 --- a/packages/api-generator/src/locale/en/VList.json +++ b/packages/api-generator/src/locale/en/VList.json @@ -1,5 +1,6 @@ { "props": { + "itemType": "Designates the key on the supplied items that is used for determining the nodes type.", "disabled": "Puts all children inputs into a disabled state.", "inactive": "If set, the list tile will not be rendered as a link even if it has to/href prop or @click handler.", "lines": "Designates a **minimum-height** for all children `v-list-item` components. This prop uses [line-clamp](https://developer.mozilla.org/en-US/docs/Web/CSS/-webkit-line-clamp) and is not supported in all browsers.", diff --git a/packages/api-generator/src/locale/en/VListGroup.json b/packages/api-generator/src/locale/en/VListGroup.json index 7b92d7f1795..798eb02ee5a 100644 --- a/packages/api-generator/src/locale/en/VListGroup.json +++ b/packages/api-generator/src/locale/en/VListGroup.json @@ -1,10 +1,15 @@ { "props": { "disabled": "Puts all children inputs into a disabled state.", + "collapseIcon": "Icon to display when the list item is expanded.", + "expandIcon": "Icon to display when the list item is collapsed.", "group": "Assign a route namespace. Accepts a string or regexp for determining active state.", "noAction": "Removes left padding assigned for action icons from group items.", "prependIcon": "Prepends an icon to the component, uses the same syntax as `v-icon`.", - "subGroup": "Designate the component as nested list group.", + "subgroup": "Designate the component as nested list group.", "value": "Expands / Collapse the list-group." + }, + "exposed": { + "isOpen": "Returns the current state of the list-group." } } diff --git a/packages/api-generator/src/locale/en/VTreeview.json b/packages/api-generator/src/locale/en/VTreeview.json index efd9b38d1dd..f693e4df8bd 100644 --- a/packages/api-generator/src/locale/en/VTreeview.json +++ b/packages/api-generator/src/locale/en/VTreeview.json @@ -1,7 +1,6 @@ { "props": { "activatable": "Allows user to mark a node as active by clicking on it.", - "active": "Syncable prop that allows one to control which nodes are active. The array consists of the `item-key` of each active item.", "color": "Applies specified color to the active node - supports utility colors (for example `success` or `purple`) or css color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). Find a list of built-in classes on the [colors page](/styles/colors#material-colors).", "dense": "Decreases the height of the items.", "disabled": "Disables selection for all nodes.", @@ -35,14 +34,19 @@ }, "slots": { "append": "Appends content after label.", - "prepend": "Prepends content before label." + "prepend": "Prepends content before label.", + "header": "Slot for custom header.", + "subheader": "Slot for custom subheader.", + "divider": "Slot for custom divider." }, "events": { - "input": "Emits the array of selected items when this value changes.", - "update:active": "Emits the array of active items when this value changes.", - "update:open": "Emits the array of open items when this value changes." + "click:open": "Emits the item when it is clicked to open.", + "click:select": "Emits the item when it is clicked to select.", + "update:activated": "Emits the array of active items when this value changes.", + "update:opened": "Emits the array of open items when this value changes.", + "update:selected": "Emits the array of selected items when this value changes." }, - "functions": { - "updateAll": "Opens or closes all nodes." + "exposed": { + "open": "Open a node by id" } } diff --git a/packages/api-generator/src/locale/en/generic.json b/packages/api-generator/src/locale/en/generic.json index 8f6a154cdd1..929c9de22a3 100644 --- a/packages/api-generator/src/locale/en/generic.json +++ b/packages/api-generator/src/locale/en/generic.json @@ -6,6 +6,7 @@ "appendAvatar": "Appends a [v-avatar](/components/avatars/) component after default content in the **append** slot.", "appendIcon": "Creates a [v-icon](/api/v-icon/) component after default content in the **append** slot.", "auto": "Centers list on selected element.", + "baseColor": "Sets the color of component when not focused.", "bgColor": "Applies specified color to the control's background. Used on components that also support the **color** prop. - supports utility colors (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). Find a list of built-in classes on the [colors page](/styles/colors#material-colors).", "clearable": "Allows for the component to be cleared.", "color": "Applies specified color to the control - supports utility colors (for example `success` or `purple`) or css color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). Find a list of built-in classes on the [colors page](/styles/colors#material-colors).", diff --git a/packages/api-generator/src/locale/en/nested.json b/packages/api-generator/src/locale/en/nested.json index 139e3fd588b..0ec2a7aa424 100644 --- a/packages/api-generator/src/locale/en/nested.json +++ b/packages/api-generator/src/locale/en/nested.json @@ -1,5 +1,7 @@ { "props": { + "activated": "Array of ids of activated nodes.", + "activeStrategy": "Affects how items with children behave when activated.\n- **leaf:** Only leaf nodes (items without children) can be activated.\n- **independent:** All nodes can be activated whether they have children or not.\n- **classic:** Activating a parent node will cause all children to be activated.", "opened": "An array containing the values of currently opened groups. Can be two-way bound with `v-model:opened`.", "openStrategy": "Affects how items with children behave when expanded.\n- **multiple:** Any number of groups can be open at once.\n- **single:** Only one group at each level can be open, opening a group will cause others to close.\n- **list:** Multiple, but all other groups will close when an item is selected.", "selected": "An array containing the values of currently selected items. Can be two-way bound with `v-model:selected`.", diff --git a/packages/docs/components.d.ts b/packages/docs/components.d.ts index 876ad3c6deb..ca7d4e75231 100644 --- a/packages/docs/components.d.ts +++ b/packages/docs/components.d.ts @@ -89,6 +89,7 @@ declare module 'vue' { AppVerticalDivider: typeof import('./src/components/app/VerticalDivider.vue')['default'] Backmatter: typeof import('./src/components/Backmatter.vue')['default'] ComponentsListItem: typeof import('./src/components/components/ListItem.vue')['default'] + DashboardDashboardEmptyState: typeof import('./src/components/dashboard/DashboardEmptyState.vue')['default'] DocContribute: typeof import('./src/components/doc/Contribute.vue')['default'] DocExplorer: typeof import('./src/components/doc/Explorer.vue')['default'] DocIconList: typeof import('./src/components/doc/IconList.vue')['default'] diff --git a/packages/docs/index.html b/packages/docs/index.html index 13d1ff4dcae..f39ecebb062 100644 --- a/packages/docs/index.html +++ b/packages/docs/index.html @@ -6,10 +6,10 @@ - + - + diff --git a/packages/docs/package.json b/packages/docs/package.json index 53342dc8b59..5a9de24d428 100644 --- a/packages/docs/package.json +++ b/packages/docs/package.json @@ -3,7 +3,7 @@ "description": "A Vue.js project", "private": true, "author": "John Leider ", - "version": "3.5.8", + "version": "3.5.9", "repository": { "type": "git", "url": "git+https://github.com/vuetifyjs/vuetify.git", @@ -23,7 +23,7 @@ "@cosmicjs/sdk": "^1.0.11", "@vuelidate/core": "^2.0.3", "@vuelidate/validators": "^2.0.4", - "@vuetify/one": "^1.1.1", + "@vuetify/one": "^1.3.1", "algoliasearch": "^4.20.0", "fflate": "^0.8.1", "isomorphic-fetch": "^3.0.0", @@ -38,7 +38,7 @@ "vue-i18n": "^9.7.1", "vue-instantsearch": "^4.12.1", "vue-prism-component": "^2.0.0", - "vuetify": "^3.5.8" + "vuetify": "^3.5.9" }, "devDependencies": { "@emailjs/browser": "^3.11.0", @@ -50,7 +50,7 @@ "@vitejs/plugin-basic-ssl": "^1.0.2", "@vitejs/plugin-vue": "^4.5.2", "@vue/compiler-sfc": "^3.4.19", - "@vuetify/api-generator": "^3.5.8", + "@vuetify/api-generator": "^3.5.9", "ajv": "^8.12.0", "async-es": "^3.2.5", "date-fns": "^2.30.0", diff --git a/packages/docs/src/components/app/bar/Logo.vue b/packages/docs/src/components/app/bar/Logo.vue index 8093d98ad90..eef4202c879 100644 --- a/packages/docs/src/components/app/bar/Logo.vue +++ b/packages/docs/src/components/app/bar/Logo.vue @@ -24,7 +24,7 @@ const theme = useTheme() const logo = computed(() => { - const file = `${theme.name.value}.svg` + const file = `${theme.current.value.dark ? 'dark' : 'light'}.svg` const logo = 'vuetify-logo-v3-slim' return `${logo}-${lgAndUp.value ? 'text-' : ''}${file}` diff --git a/packages/docs/src/components/app/settings/Options.vue b/packages/docs/src/components/app/settings/Options.vue index f59e6d0d9b2..f5e429c8f1c 100644 --- a/packages/docs/src/components/app/settings/Options.vue +++ b/packages/docs/src/components/app/settings/Options.vue @@ -13,6 +13,7 @@ text="general-message" title="general" /> + diff --git a/packages/docs/src/components/app/settings/options/ThemeOption.vue b/packages/docs/src/components/app/settings/options/ThemeOption.vue index 3ab70509ed3..bb1253556ad 100644 --- a/packages/docs/src/components/app/settings/options/ThemeOption.vue +++ b/packages/docs/src/components/app/settings/options/ThemeOption.vue @@ -51,15 +51,25 @@ icon: 'mdi-weather-night', value: 'dark', }, + { + text: 'Blackguard', + icon: 'mdi-space-invaders', + value: 'blackguard', + }, + { + text: 'Polaris', + icon: 'mdi-image-filter-hdr', + value: 'polaris', + }, + { + text: 'Nebula', + icon: 'mdi-rocket-launch-outline', + value: 'nebula', + }, { text: t('system'), icon: 'mdi-desktop-tower-monitor', value: 'system', }, - { - text: t('blackguard'), - icon: 'mdi-space-invaders', - value: 'blackguard', - }, ] diff --git a/packages/docs/src/components/dashboard/DashboardEmptyState.vue b/packages/docs/src/components/dashboard/DashboardEmptyState.vue new file mode 100644 index 00000000000..80b4d5cfa39 --- /dev/null +++ b/packages/docs/src/components/dashboard/DashboardEmptyState.vue @@ -0,0 +1,25 @@ + + + diff --git a/packages/docs/src/components/doc/MadeWithVuetifyGallery.vue b/packages/docs/src/components/doc/MadeWithVuetifyGallery.vue index be75beb1399..c481c475679 100644 --- a/packages/docs/src/components/doc/MadeWithVuetifyGallery.vue +++ b/packages/docs/src/components/doc/MadeWithVuetifyGallery.vue @@ -79,7 +79,7 @@ const store = useMadeWithVuetifyStore() const items = computed(() => { - return shuffle(store.items) + return shuffle(store.items.slice()) }) function shuffle (array) { diff --git a/packages/docs/src/data/nav.json b/packages/docs/src/data/nav.json index df27b068125..ce831953cf2 100644 --- a/packages/docs/src/data/nav.json +++ b/packages/docs/src/data/nav.json @@ -239,6 +239,10 @@ { "title": "speed-dials", "subfolder": "components" + }, + { + "title": "treeview", + "subfolder": "components" } ] }, diff --git a/packages/docs/src/data/page-to-api.json b/packages/docs/src/data/page-to-api.json index 54f377f2521..36322ada286 100644 --- a/packages/docs/src/data/page-to-api.json +++ b/packages/docs/src/data/page-to-api.json @@ -143,7 +143,12 @@ "components/timelines": ["VTimeline", "VTimelineItem"], "components/toolbars": ["VToolbar", "VToolbarItems", "VToolbarTitle"], "components/tooltips": ["VTooltip"], - "components/treeview": ["VTreeview"], + "components/treeview": [ + "VTreeview", + "VTreeviewItem", + "VTreeviewChildren", + "VTreeviewGroup" + ], "components/virtual-scroller": ["VVirtualScroll"], "components/windows": ["VWindow", "VWindowItem"], "directives/click-outside": ["v-click-outside"], diff --git a/packages/docs/src/examples/v-treeview/misc-search-and-filter.vue b/packages/docs/src/examples/v-treeview/misc-search-and-filter.vue index e0b2bbc6ebb..7333aefc0cf 100644 --- a/packages/docs/src/examples/v-treeview/misc-search-and-filter.vue +++ b/packages/docs/src/examples/v-treeview/misc-search-and-filter.vue @@ -31,7 +31,7 @@ @@ -45,63 +45,63 @@ const items = ref([ { id: 1, - name: 'Vuetify Human Resources', + title: 'Vuetify Human Resources', children: [ { id: 2, - name: 'Core team', + title: 'Core team', children: [ { id: 201, - name: 'John', + title: 'John', }, { id: 202, - name: 'Kael', + title: 'Kael', }, { id: 203, - name: 'Nekosaur', + title: 'Nekosaur', }, { id: 204, - name: 'Jacek', + title: 'Jacek', }, { id: 205, - name: 'Andrew', + title: 'Andrew', }, ], }, { id: 3, - name: 'Administrators', + title: 'Administrators', children: [ { id: 301, - name: 'Mike', + title: 'Mike', }, { id: 302, - name: 'Hunt', + title: 'Hunt', }, ], }, { id: 4, - name: 'Contributors', + title: 'Contributors', children: [ { id: 401, - name: 'Phlow', + title: 'Phlow', }, { id: 402, - name: 'Brandon', + title: 'Brandon', }, { id: 403, - name: 'Sean', + title: 'Sean', }, ], }, @@ -122,63 +122,63 @@ items: [ { id: 1, - name: 'Vuetify Human Resources', + title: 'Vuetify Human Resources', children: [ { id: 2, - name: 'Core team', + title: 'Core team', children: [ { id: 201, - name: 'John', + title: 'John', }, { id: 202, - name: 'Kael', + title: 'Kael', }, { id: 203, - name: 'Nekosaur', + title: 'Nekosaur', }, { id: 204, - name: 'Jacek', + title: 'Jacek', }, { id: 205, - name: 'Andrew', + title: 'Andrew', }, ], }, { id: 3, - name: 'Administrators', + title: 'Administrators', children: [ { id: 301, - name: 'Mike', + title: 'Mike', }, { id: 302, - name: 'Hunt', + title: 'Hunt', }, ], }, { id: 4, - name: 'Contributors', + title: 'Contributors', children: [ { id: 401, - name: 'Phlow', + title: 'Phlow', }, { id: 402, - name: 'Brandon', + title: 'Brandon', }, { id: 403, - name: 'Sean', + title: 'Sean', }, ], }, diff --git a/packages/docs/src/examples/v-treeview/misc-selectable-icons.vue b/packages/docs/src/examples/v-treeview/misc-selectable-icons.vue index 1fa861b86bc..0cf3925f03b 100644 --- a/packages/docs/src/examples/v-treeview/misc-selectable-icons.vue +++ b/packages/docs/src/examples/v-treeview/misc-selectable-icons.vue @@ -2,30 +2,33 @@ - mdi-silverware - Local hotspots + - + > @@ -51,19 +54,12 @@ - - mdi-beer - - {{ selection.name }} - + prepend-icon="mdi-beer" + size="small" + > @@ -73,23 +69,19 @@ - Reset - + > - Save - - mdi-content-save - - + > diff --git a/packages/docs/src/examples/v-treeview/prop-activatable.vue b/packages/docs/src/examples/v-treeview/prop-activatable.vue index c53ecc0a794..3d6a9fd765e 100644 --- a/packages/docs/src/examples/v-treeview/prop-activatable.vue +++ b/packages/docs/src/examples/v-treeview/prop-activatable.vue @@ -11,42 +11,42 @@ const items = ref([ { id: 1, - name: 'Applications :', + title: 'Applications :', children: [ - { id: 2, name: 'Calendar : app' }, - { id: 3, name: 'Chrome : app' }, - { id: 4, name: 'Webstorm : app' }, + { id: 2, title: 'Calendar : app' }, + { id: 3, title: 'Chrome : app' }, + { id: 4, title: 'Webstorm : app' }, ], }, { id: 5, - name: 'Documents :', + title: 'Documents :', children: [ { id: 6, - name: 'vuetify :', + title: 'vuetify :', children: [ { id: 7, - name: 'src :', + title: 'src :', children: [ - { id: 8, name: 'index : ts' }, - { id: 9, name: 'bootstrap : ts' }, + { id: 8, title: 'index : ts' }, + { id: 9, title: 'bootstrap : ts' }, ], }, ], }, { id: 10, - name: 'material2 :', + title: 'material2 :', children: [ { id: 11, - name: 'src :', + title: 'src :', children: [ - { id: 12, name: 'v-btn : ts' }, - { id: 13, name: 'v-card : ts' }, - { id: 14, name: 'v-window : ts' }, + { id: 12, title: 'v-btn : ts' }, + { id: 13, title: 'v-card : ts' }, + { id: 14, title: 'v-window : ts' }, ], }, ], @@ -55,28 +55,28 @@ }, { id: 15, - name: 'Downloads :', + title: 'Downloads :', children: [ - { id: 16, name: 'October : pdf' }, - { id: 17, name: 'November : pdf' }, - { id: 18, name: 'Tutorial : html' }, + { id: 16, title: 'October : pdf' }, + { id: 17, title: 'November : pdf' }, + { id: 18, title: 'Tutorial : html' }, ], }, { id: 19, - name: 'Videos :', + title: 'Videos :', children: [ { id: 20, - name: 'Tutorials :', + title: 'Tutorials :', children: [ - { id: 21, name: 'Basic layouts : mp4' }, - { id: 22, name: 'Advanced techniques : mp4' }, - { id: 23, name: 'All about app : dir' }, + { id: 21, title: 'Basic layouts : mp4' }, + { id: 22, title: 'Advanced techniques : mp4' }, + { id: 23, title: 'All about app : dir' }, ], }, - { id: 24, name: 'Intro : mov' }, - { id: 25, name: 'Conference introduction : avi' }, + { id: 24, title: 'Intro : mov' }, + { id: 25, title: 'Conference introduction : avi' }, ], }, ]) @@ -88,42 +88,42 @@ items: [ { id: 1, - name: 'Applications :', + title: 'Applications :', children: [ - { id: 2, name: 'Calendar : app' }, - { id: 3, name: 'Chrome : app' }, - { id: 4, name: 'Webstorm : app' }, + { id: 2, title: 'Calendar : app' }, + { id: 3, title: 'Chrome : app' }, + { id: 4, title: 'Webstorm : app' }, ], }, { id: 5, - name: 'Documents :', + title: 'Documents :', children: [ { id: 6, - name: 'vuetify :', + title: 'vuetify :', children: [ { id: 7, - name: 'src :', + title: 'src :', children: [ - { id: 8, name: 'index : ts' }, - { id: 9, name: 'bootstrap : ts' }, + { id: 8, title: 'index : ts' }, + { id: 9, title: 'bootstrap : ts' }, ], }, ], }, { id: 10, - name: 'material2 :', + title: 'material2 :', children: [ { id: 11, - name: 'src :', + title: 'src :', children: [ - { id: 12, name: 'v-btn : ts' }, - { id: 13, name: 'v-card : ts' }, - { id: 14, name: 'v-window : ts' }, + { id: 12, title: 'v-btn : ts' }, + { id: 13, title: 'v-card : ts' }, + { id: 14, title: 'v-window : ts' }, ], }, ], @@ -132,28 +132,28 @@ }, { id: 15, - name: 'Downloads :', + title: 'Downloads :', children: [ - { id: 16, name: 'October : pdf' }, - { id: 17, name: 'November : pdf' }, - { id: 18, name: 'Tutorial : html' }, + { id: 16, title: 'October : pdf' }, + { id: 17, title: 'November : pdf' }, + { id: 18, title: 'Tutorial : html' }, ], }, { id: 19, - name: 'Videos :', + title: 'Videos :', children: [ { id: 20, - name: 'Tutorials :', + title: 'Tutorials :', children: [ - { id: 21, name: 'Basic layouts : mp4' }, - { id: 22, name: 'Advanced techniques : mp4' }, - { id: 23, name: 'All about app : dir' }, + { id: 21, title: 'Basic layouts : mp4' }, + { id: 22, title: 'Advanced techniques : mp4' }, + { id: 23, title: 'All about app : dir' }, ], }, - { id: 24, name: 'Intro : mov' }, - { id: 25, name: 'Conference introduction : avi' }, + { id: 24, title: 'Intro : mov' }, + { id: 25, title: 'Conference introduction : avi' }, ], }, ], diff --git a/packages/docs/src/examples/v-treeview/prop-color.vue b/packages/docs/src/examples/v-treeview/prop-color.vue index eac3546d7f8..a3b81739f99 100644 --- a/packages/docs/src/examples/v-treeview/prop-color.vue +++ b/packages/docs/src/examples/v-treeview/prop-color.vue @@ -12,42 +12,42 @@ const items = ref([ { id: 1, - name: 'Applications :', + title: 'Applications :', children: [ - { id: 2, name: 'Calendar : app' }, - { id: 3, name: 'Chrome : app' }, - { id: 4, name: 'Webstorm : app' }, + { id: 2, title: 'Calendar : app' }, + { id: 3, title: 'Chrome : app' }, + { id: 4, title: 'Webstorm : app' }, ], }, { id: 5, - name: 'Documents :', + title: 'Documents :', children: [ { id: 6, - name: 'vuetify :', + title: 'vuetify :', children: [ { id: 7, - name: 'src :', + title: 'src :', children: [ - { id: 8, name: 'index : ts' }, - { id: 9, name: 'bootstrap : ts' }, + { id: 8, title: 'index : ts' }, + { id: 9, title: 'bootstrap : ts' }, ], }, ], }, { id: 10, - name: 'material2 :', + title: 'material2 :', children: [ { id: 11, - name: 'src :', + title: 'src :', children: [ - { id: 12, name: 'v-btn : ts' }, - { id: 13, name: 'v-card : ts' }, - { id: 14, name: 'v-window : ts' }, + { id: 12, title: 'v-btn : ts' }, + { id: 13, title: 'v-card : ts' }, + { id: 14, title: 'v-window : ts' }, ], }, ], @@ -56,28 +56,28 @@ }, { id: 15, - name: 'Downloads :', + title: 'Downloads :', children: [ - { id: 16, name: 'October : pdf' }, - { id: 17, name: 'November : pdf' }, - { id: 18, name: 'Tutorial : html' }, + { id: 16, title: 'October : pdf' }, + { id: 17, title: 'November : pdf' }, + { id: 18, title: 'Tutorial : html' }, ], }, { id: 19, - name: 'Videos :', + title: 'Videos :', children: [ { id: 20, - name: 'Tutorials :', + title: 'Tutorials :', children: [ - { id: 21, name: 'Basic layouts : mp4' }, - { id: 22, name: 'Advanced techniques : mp4' }, - { id: 23, name: 'All about app : dir' }, + { id: 21, title: 'Basic layouts : mp4' }, + { id: 22, title: 'Advanced techniques : mp4' }, + { id: 23, title: 'All about app : dir' }, ], }, - { id: 24, name: 'Intro : mov' }, - { id: 25, name: 'Conference introduction : avi' }, + { id: 24, title: 'Intro : mov' }, + { id: 25, title: 'Conference introduction : avi' }, ], }, ]) @@ -89,42 +89,42 @@ items: [ { id: 1, - name: 'Applications :', + title: 'Applications :', children: [ - { id: 2, name: 'Calendar : app' }, - { id: 3, name: 'Chrome : app' }, - { id: 4, name: 'Webstorm : app' }, + { id: 2, title: 'Calendar : app' }, + { id: 3, title: 'Chrome : app' }, + { id: 4, title: 'Webstorm : app' }, ], }, { id: 5, - name: 'Documents :', + title: 'Documents :', children: [ { id: 6, - name: 'vuetify :', + title: 'vuetify :', children: [ { id: 7, - name: 'src :', + title: 'src :', children: [ - { id: 8, name: 'index : ts' }, - { id: 9, name: 'bootstrap : ts' }, + { id: 8, title: 'index : ts' }, + { id: 9, title: 'bootstrap : ts' }, ], }, ], }, { id: 10, - name: 'material2 :', + title: 'material2 :', children: [ { id: 11, - name: 'src :', + title: 'src :', children: [ - { id: 12, name: 'v-btn : ts' }, - { id: 13, name: 'v-card : ts' }, - { id: 14, name: 'v-window : ts' }, + { id: 12, title: 'v-btn : ts' }, + { id: 13, title: 'v-card : ts' }, + { id: 14, title: 'v-window : ts' }, ], }, ], @@ -133,28 +133,28 @@ }, { id: 15, - name: 'Downloads :', + title: 'Downloads :', children: [ - { id: 16, name: 'October : pdf' }, - { id: 17, name: 'November : pdf' }, - { id: 18, name: 'Tutorial : html' }, + { id: 16, title: 'October : pdf' }, + { id: 17, title: 'November : pdf' }, + { id: 18, title: 'Tutorial : html' }, ], }, { id: 19, - name: 'Videos :', + title: 'Videos :', children: [ { id: 20, - name: 'Tutorials :', + title: 'Tutorials :', children: [ - { id: 21, name: 'Basic layouts : mp4' }, - { id: 22, name: 'Advanced techniques : mp4' }, - { id: 23, name: 'All about app : dir' }, + { id: 21, title: 'Basic layouts : mp4' }, + { id: 22, title: 'Advanced techniques : mp4' }, + { id: 23, title: 'All about app : dir' }, ], }, - { id: 24, name: 'Intro : mov' }, - { id: 25, name: 'Conference introduction : avi' }, + { id: 24, title: 'Intro : mov' }, + { id: 25, title: 'Conference introduction : avi' }, ], }, ], diff --git a/packages/docs/src/examples/v-treeview/prop-dense.vue b/packages/docs/src/examples/v-treeview/prop-dense.vue index 1521d4ab7a1..eaeb25ffdd8 100644 --- a/packages/docs/src/examples/v-treeview/prop-dense.vue +++ b/packages/docs/src/examples/v-treeview/prop-dense.vue @@ -1,7 +1,7 @@ @@ -11,42 +11,42 @@ const items = ref([ { id: 1, - name: 'Applications :', + title: 'Applications :', children: [ - { id: 2, name: 'Calendar : app' }, - { id: 3, name: 'Chrome : app' }, - { id: 4, name: 'Webstorm : app' }, + { id: 2, title: 'Calendar : app' }, + { id: 3, title: 'Chrome : app' }, + { id: 4, title: 'Webstorm : app' }, ], }, { id: 5, - name: 'Documents :', + title: 'Documents :', children: [ { id: 6, - name: 'vuetify :', + title: 'vuetify :', children: [ { id: 7, - name: 'src :', + title: 'src :', children: [ - { id: 8, name: 'index : ts' }, - { id: 9, name: 'bootstrap : ts' }, + { id: 8, title: 'index : ts' }, + { id: 9, title: 'bootstrap : ts' }, ], }, ], }, { id: 10, - name: 'material2 :', + title: 'material2 :', children: [ { id: 11, - name: 'src :', + title: 'src :', children: [ - { id: 12, name: 'v-btn : ts' }, - { id: 13, name: 'v-card : ts' }, - { id: 14, name: 'v-window : ts' }, + { id: 12, title: 'v-btn : ts' }, + { id: 13, title: 'v-card : ts' }, + { id: 14, title: 'v-window : ts' }, ], }, ], @@ -55,28 +55,28 @@ }, { id: 15, - name: 'Downloads :', + title: 'Downloads :', children: [ - { id: 16, name: 'October : pdf' }, - { id: 17, name: 'November : pdf' }, - { id: 18, name: 'Tutorial : html' }, + { id: 16, title: 'October : pdf' }, + { id: 17, title: 'November : pdf' }, + { id: 18, title: 'Tutorial : html' }, ], }, { id: 19, - name: 'Videos :', + title: 'Videos :', children: [ { id: 20, - name: 'Tutorials :', + title: 'Tutorials :', children: [ - { id: 21, name: 'Basic layouts : mp4' }, - { id: 22, name: 'Advanced techniques : mp4' }, - { id: 23, name: 'All about app : dir' }, + { id: 21, title: 'Basic layouts : mp4' }, + { id: 22, title: 'Advanced techniques : mp4' }, + { id: 23, title: 'All about app : dir' }, ], }, - { id: 24, name: 'Intro : mov' }, - { id: 25, name: 'Conference introduction : avi' }, + { id: 24, title: 'Intro : mov' }, + { id: 25, title: 'Conference introduction : avi' }, ], }, ]) @@ -88,42 +88,42 @@ items: [ { id: 1, - name: 'Applications :', + title: 'Applications :', children: [ - { id: 2, name: 'Calendar : app' }, - { id: 3, name: 'Chrome : app' }, - { id: 4, name: 'Webstorm : app' }, + { id: 2, title: 'Calendar : app' }, + { id: 3, title: 'Chrome : app' }, + { id: 4, title: 'Webstorm : app' }, ], }, { id: 5, - name: 'Documents :', + title: 'Documents :', children: [ { id: 6, - name: 'vuetify :', + title: 'vuetify :', children: [ { id: 7, - name: 'src :', + title: 'src :', children: [ - { id: 8, name: 'index : ts' }, - { id: 9, name: 'bootstrap : ts' }, + { id: 8, title: 'index : ts' }, + { id: 9, title: 'bootstrap : ts' }, ], }, ], }, { id: 10, - name: 'material2 :', + title: 'material2 :', children: [ { id: 11, - name: 'src :', + title: 'src :', children: [ - { id: 12, name: 'v-btn : ts' }, - { id: 13, name: 'v-card : ts' }, - { id: 14, name: 'v-window : ts' }, + { id: 12, title: 'v-btn : ts' }, + { id: 13, title: 'v-card : ts' }, + { id: 14, title: 'v-window : ts' }, ], }, ], @@ -132,28 +132,28 @@ }, { id: 15, - name: 'Downloads :', + title: 'Downloads :', children: [ - { id: 16, name: 'October : pdf' }, - { id: 17, name: 'November : pdf' }, - { id: 18, name: 'Tutorial : html' }, + { id: 16, title: 'October : pdf' }, + { id: 17, title: 'November : pdf' }, + { id: 18, title: 'Tutorial : html' }, ], }, { id: 19, - name: 'Videos :', + title: 'Videos :', children: [ { id: 20, - name: 'Tutorials :', + title: 'Tutorials :', children: [ - { id: 21, name: 'Basic layouts : mp4' }, - { id: 22, name: 'Advanced techniques : mp4' }, - { id: 23, name: 'All about app : dir' }, + { id: 21, title: 'Basic layouts : mp4' }, + { id: 22, title: 'Advanced techniques : mp4' }, + { id: 23, title: 'All about app : dir' }, ], }, - { id: 24, name: 'Intro : mov' }, - { id: 25, name: 'Conference introduction : avi' }, + { id: 24, title: 'Intro : mov' }, + { id: 25, title: 'Conference introduction : avi' }, ], }, ], diff --git a/packages/docs/src/examples/v-treeview/prop-item-disabled.vue b/packages/docs/src/examples/v-treeview/prop-item-disabled.vue index 3fd8d1078e0..8d1815c0528 100644 --- a/packages/docs/src/examples/v-treeview/prop-item-disabled.vue +++ b/packages/docs/src/examples/v-treeview/prop-item-disabled.vue @@ -12,44 +12,44 @@ const items = ref([ { id: 1, - name: 'Applications :', + title: 'Applications :', locked: true, children: [ - { id: 2, name: 'Calendar : app' }, - { id: 3, name: 'Chrome : app' }, - { id: 4, name: 'Webstorm : app' }, + { id: 2, title: 'Calendar : app' }, + { id: 3, title: 'Chrome : app' }, + { id: 4, title: 'Webstorm : app' }, ], }, { id: 5, - name: 'Documents :', + title: 'Documents :', children: [ { id: 6, - name: 'vuetify :', + title: 'vuetify :', children: [ { id: 7, - name: 'src :', + title: 'src :', locked: true, children: [ - { id: 8, name: 'index : ts' }, - { id: 9, name: 'bootstrap : ts' }, + { id: 8, title: 'index : ts' }, + { id: 9, title: 'bootstrap : ts' }, ], }, ], }, { id: 10, - name: 'material2 :', + title: 'material2 :', children: [ { id: 11, - name: 'src :', + title: 'src :', children: [ - { id: 12, name: 'v-btn : ts' }, - { id: 13, name: 'v-card : ts' }, - { id: 14, name: 'v-window : ts' }, + { id: 12, title: 'v-btn : ts' }, + { id: 13, title: 'v-card : ts' }, + { id: 14, title: 'v-window : ts' }, ], }, ], @@ -58,28 +58,28 @@ }, { id: 15, - name: 'Downloads :', + title: 'Downloads :', children: [ - { id: 16, name: 'October : pdf', locked: true }, - { id: 17, name: 'November : pdf', locked: true }, - { id: 18, name: 'Tutorial : html', locked: true }, + { id: 16, title: 'October : pdf', locked: true }, + { id: 17, title: 'November : pdf', locked: true }, + { id: 18, title: 'Tutorial : html', locked: true }, ], }, { id: 19, - name: 'Videos :', + title: 'Videos :', children: [ { id: 20, - name: 'Tutorials :', + title: 'Tutorials :', children: [ - { id: 21, name: 'Basic layouts : mp4' }, - { id: 22, name: 'Advanced techniques : mp4' }, - { id: 23, name: 'All about app : dir' }, + { id: 21, title: 'Basic layouts : mp4' }, + { id: 22, title: 'Advanced techniques : mp4' }, + { id: 23, title: 'All about app : dir' }, ], }, - { id: 24, name: 'Intro : mov' }, - { id: 25, name: 'Conference introduction : avi' }, + { id: 24, title: 'Intro : mov' }, + { id: 25, title: 'Conference introduction : avi' }, ], }, ]) @@ -91,44 +91,44 @@ items: [ { id: 1, - name: 'Applications :', + title: 'Applications :', locked: true, children: [ - { id: 2, name: 'Calendar : app' }, - { id: 3, name: 'Chrome : app' }, - { id: 4, name: 'Webstorm : app' }, + { id: 2, title: 'Calendar : app' }, + { id: 3, title: 'Chrome : app' }, + { id: 4, title: 'Webstorm : app' }, ], }, { id: 5, - name: 'Documents :', + title: 'Documents :', children: [ { id: 6, - name: 'vuetify :', + title: 'vuetify :', children: [ { id: 7, - name: 'src :', + title: 'src :', locked: true, children: [ - { id: 8, name: 'index : ts' }, - { id: 9, name: 'bootstrap : ts' }, + { id: 8, title: 'index : ts' }, + { id: 9, title: 'bootstrap : ts' }, ], }, ], }, { id: 10, - name: 'material2 :', + title: 'material2 :', children: [ { id: 11, - name: 'src :', + title: 'src :', children: [ - { id: 12, name: 'v-btn : ts' }, - { id: 13, name: 'v-card : ts' }, - { id: 14, name: 'v-window : ts' }, + { id: 12, title: 'v-btn : ts' }, + { id: 13, title: 'v-card : ts' }, + { id: 14, title: 'v-window : ts' }, ], }, ], @@ -137,28 +137,28 @@ }, { id: 15, - name: 'Downloads :', + title: 'Downloads :', children: [ - { id: 16, name: 'October : pdf', locked: true }, - { id: 17, name: 'November : pdf', locked: true }, - { id: 18, name: 'Tutorial : html', locked: true }, + { id: 16, title: 'October : pdf', locked: true }, + { id: 17, title: 'November : pdf', locked: true }, + { id: 18, title: 'Tutorial : html', locked: true }, ], }, { id: 19, - name: 'Videos :', + title: 'Videos :', children: [ { id: 20, - name: 'Tutorials :', + title: 'Tutorials :', children: [ - { id: 21, name: 'Basic layouts : mp4' }, - { id: 22, name: 'Advanced techniques : mp4' }, - { id: 23, name: 'All about app : dir' }, + { id: 21, title: 'Basic layouts : mp4' }, + { id: 22, title: 'Advanced techniques : mp4' }, + { id: 23, title: 'All about app : dir' }, ], }, - { id: 24, name: 'Intro : mov' }, - { id: 25, name: 'Conference introduction : avi' }, + { id: 24, title: 'Intro : mov' }, + { id: 25, title: 'Conference introduction : avi' }, ], }, ], diff --git a/packages/docs/src/examples/v-treeview/prop-load-children.vue b/packages/docs/src/examples/v-treeview/prop-load-children.vue index 3314e403d4d..0b9fb179467 100644 --- a/packages/docs/src/examples/v-treeview/prop-load-children.vue +++ b/packages/docs/src/examples/v-treeview/prop-load-children.vue @@ -3,17 +3,21 @@ User Directory + { + console.log(active.value) if (!active.value.length) return undefined const id = active.value[0] return users.value.find(user => user.id === id) diff --git a/packages/docs/src/examples/v-treeview/prop-open-all.vue b/packages/docs/src/examples/v-treeview/prop-open-all.vue index 597f4437f92..9bd84547b95 100644 --- a/packages/docs/src/examples/v-treeview/prop-open-all.vue +++ b/packages/docs/src/examples/v-treeview/prop-open-all.vue @@ -1,6 +1,7 @@ @@ -11,42 +12,42 @@ const items = ref([ { id: 1, - name: 'Applications :', + title: 'Applications :', children: [ - { id: 2, name: 'Calendar : app' }, - { id: 3, name: 'Chrome : app' }, - { id: 4, name: 'Webstorm : app' }, + { id: 2, title: 'Calendar : app' }, + { id: 3, title: 'Chrome : app' }, + { id: 4, title: 'Webstorm : app' }, ], }, { id: 5, - name: 'Documents :', + title: 'Documents :', children: [ { id: 6, - name: 'vuetify :', + title: 'vuetify :', children: [ { id: 7, - name: 'src :', + title: 'src :', children: [ - { id: 8, name: 'index : ts' }, - { id: 9, name: 'bootstrap : ts' }, + { id: 8, title: 'index : ts' }, + { id: 9, title: 'bootstrap : ts' }, ], }, ], }, { id: 10, - name: 'material2 :', + title: 'material2 :', children: [ { id: 11, - name: 'src :', + title: 'src :', children: [ - { id: 12, name: 'v-btn : ts' }, - { id: 13, name: 'v-card : ts' }, - { id: 14, name: 'v-window : ts' }, + { id: 12, title: 'v-btn : ts' }, + { id: 13, title: 'v-card : ts' }, + { id: 14, title: 'v-window : ts' }, ], }, ], @@ -55,28 +56,28 @@ }, { id: 15, - name: 'Downloads :', + title: 'Downloads :', children: [ - { id: 16, name: 'October : pdf' }, - { id: 17, name: 'November : pdf' }, - { id: 18, name: 'Tutorial : html' }, + { id: 16, title: 'October : pdf' }, + { id: 17, title: 'November : pdf' }, + { id: 18, title: 'Tutorial : html' }, ], }, { id: 19, - name: 'Videos :', + title: 'Videos :', children: [ { id: 20, - name: 'Tutorials :', + title: 'Tutorials :', children: [ - { id: 21, name: 'Basic layouts : mp4' }, - { id: 22, name: 'Advanced techniques : mp4' }, - { id: 23, name: 'All about app : dir' }, + { id: 21, title: 'Basic layouts : mp4' }, + { id: 22, title: 'Advanced techniques : mp4' }, + { id: 23, title: 'All about app : dir' }, ], }, - { id: 24, name: 'Intro : mov' }, - { id: 25, name: 'Conference introduction : avi' }, + { id: 24, title: 'Intro : mov' }, + { id: 25, title: 'Conference introduction : avi' }, ], }, ]) @@ -88,42 +89,42 @@ items: [ { id: 1, - name: 'Applications :', + title: 'Applications :', children: [ - { id: 2, name: 'Calendar : app' }, - { id: 3, name: 'Chrome : app' }, - { id: 4, name: 'Webstorm : app' }, + { id: 2, title: 'Calendar : app' }, + { id: 3, title: 'Chrome : app' }, + { id: 4, title: 'Webstorm : app' }, ], }, { id: 5, - name: 'Documents :', + title: 'Documents :', children: [ { id: 6, - name: 'vuetify :', + title: 'vuetify :', children: [ { id: 7, - name: 'src :', + title: 'src :', children: [ - { id: 8, name: 'index : ts' }, - { id: 9, name: 'bootstrap : ts' }, + { id: 8, title: 'index : ts' }, + { id: 9, title: 'bootstrap : ts' }, ], }, ], }, { id: 10, - name: 'material2 :', + title: 'material2 :', children: [ { id: 11, - name: 'src :', + title: 'src :', children: [ - { id: 12, name: 'v-btn : ts' }, - { id: 13, name: 'v-card : ts' }, - { id: 14, name: 'v-window : ts' }, + { id: 12, title: 'v-btn : ts' }, + { id: 13, title: 'v-card : ts' }, + { id: 14, title: 'v-window : ts' }, ], }, ], @@ -132,28 +133,28 @@ }, { id: 15, - name: 'Downloads :', + title: 'Downloads :', children: [ - { id: 16, name: 'October : pdf' }, - { id: 17, name: 'November : pdf' }, - { id: 18, name: 'Tutorial : html' }, + { id: 16, title: 'October : pdf' }, + { id: 17, title: 'November : pdf' }, + { id: 18, title: 'Tutorial : html' }, ], }, { id: 19, - name: 'Videos :', + title: 'Videos :', children: [ { id: 20, - name: 'Tutorials :', + title: 'Tutorials :', children: [ - { id: 21, name: 'Basic layouts : mp4' }, - { id: 22, name: 'Advanced techniques : mp4' }, - { id: 23, name: 'All about app : dir' }, + { id: 21, title: 'Basic layouts : mp4' }, + { id: 22, title: 'Advanced techniques : mp4' }, + { id: 23, title: 'All about app : dir' }, ], }, - { id: 24, name: 'Intro : mov' }, - { id: 25, name: 'Conference introduction : avi' }, + { id: 24, title: 'Intro : mov' }, + { id: 25, title: 'Conference introduction : avi' }, ], }, ], diff --git a/packages/docs/src/examples/v-treeview/prop-rounded.vue b/packages/docs/src/examples/v-treeview/prop-rounded.vue index 1220c632d44..57923474bfb 100644 --- a/packages/docs/src/examples/v-treeview/prop-rounded.vue +++ b/packages/docs/src/examples/v-treeview/prop-rounded.vue @@ -2,7 +2,6 @@ @@ -13,42 +12,42 @@ const items = ref([ { id: 1, - name: 'Applications :', + title: 'Applications :', children: [ - { id: 2, name: 'Calendar : app' }, - { id: 3, name: 'Chrome : app' }, - { id: 4, name: 'Webstorm : app' }, + { id: 2, title: 'Calendar : app' }, + { id: 3, title: 'Chrome : app' }, + { id: 4, title: 'Webstorm : app' }, ], }, { id: 5, - name: 'Documents :', + title: 'Documents :', children: [ { id: 6, - name: 'vuetify :', + title: 'vuetify :', children: [ { id: 7, - name: 'src :', + title: 'src :', children: [ - { id: 8, name: 'index : ts' }, - { id: 9, name: 'bootstrap : ts' }, + { id: 8, title: 'index : ts' }, + { id: 9, title: 'bootstrap : ts' }, ], }, ], }, { id: 10, - name: 'material2 :', + title: 'material2 :', children: [ { id: 11, - name: 'src :', + title: 'src :', children: [ - { id: 12, name: 'v-btn : ts' }, - { id: 13, name: 'v-card : ts' }, - { id: 14, name: 'v-window : ts' }, + { id: 12, title: 'v-btn : ts' }, + { id: 13, title: 'v-card : ts' }, + { id: 14, title: 'v-window : ts' }, ], }, ], @@ -57,28 +56,28 @@ }, { id: 15, - name: 'Downloads :', + title: 'Downloads :', children: [ - { id: 16, name: 'October : pdf' }, - { id: 17, name: 'November : pdf' }, - { id: 18, name: 'Tutorial : html' }, + { id: 16, title: 'October : pdf' }, + { id: 17, title: 'November : pdf' }, + { id: 18, title: 'Tutorial : html' }, ], }, { id: 19, - name: 'Videos :', + title: 'Videos :', children: [ { id: 20, - name: 'Tutorials :', + title: 'Tutorials :', children: [ - { id: 21, name: 'Basic layouts : mp4' }, - { id: 22, name: 'Advanced techniques : mp4' }, - { id: 23, name: 'All about app : dir' }, + { id: 21, title: 'Basic layouts : mp4' }, + { id: 22, title: 'Advanced techniques : mp4' }, + { id: 23, title: 'All about app : dir' }, ], }, - { id: 24, name: 'Intro : mov' }, - { id: 25, name: 'Conference introduction : avi' }, + { id: 24, title: 'Intro : mov' }, + { id: 25, title: 'Conference introduction : avi' }, ], }, ]) @@ -90,42 +89,42 @@ items: [ { id: 1, - name: 'Applications :', + title: 'Applications :', children: [ - { id: 2, name: 'Calendar : app' }, - { id: 3, name: 'Chrome : app' }, - { id: 4, name: 'Webstorm : app' }, + { id: 2, title: 'Calendar : app' }, + { id: 3, title: 'Chrome : app' }, + { id: 4, title: 'Webstorm : app' }, ], }, { id: 5, - name: 'Documents :', + title: 'Documents :', children: [ { id: 6, - name: 'vuetify :', + title: 'vuetify :', children: [ { id: 7, - name: 'src :', + title: 'src :', children: [ - { id: 8, name: 'index : ts' }, - { id: 9, name: 'bootstrap : ts' }, + { id: 8, title: 'index : ts' }, + { id: 9, title: 'bootstrap : ts' }, ], }, ], }, { id: 10, - name: 'material2 :', + title: 'material2 :', children: [ { id: 11, - name: 'src :', + title: 'src :', children: [ - { id: 12, name: 'v-btn : ts' }, - { id: 13, name: 'v-card : ts' }, - { id: 14, name: 'v-window : ts' }, + { id: 12, title: 'v-btn : ts' }, + { id: 13, title: 'v-card : ts' }, + { id: 14, title: 'v-window : ts' }, ], }, ], @@ -134,28 +133,28 @@ }, { id: 15, - name: 'Downloads :', + title: 'Downloads :', children: [ - { id: 16, name: 'October : pdf' }, - { id: 17, name: 'November : pdf' }, - { id: 18, name: 'Tutorial : html' }, + { id: 16, title: 'October : pdf' }, + { id: 17, title: 'November : pdf' }, + { id: 18, title: 'Tutorial : html' }, ], }, { id: 19, - name: 'Videos :', + title: 'Videos :', children: [ { id: 20, - name: 'Tutorials :', + title: 'Tutorials :', children: [ - { id: 21, name: 'Basic layouts : mp4' }, - { id: 22, name: 'Advanced techniques : mp4' }, - { id: 23, name: 'All about app : dir' }, + { id: 21, title: 'Basic layouts : mp4' }, + { id: 22, title: 'Advanced techniques : mp4' }, + { id: 23, title: 'All about app : dir' }, ], }, - { id: 24, name: 'Intro : mov' }, - { id: 25, name: 'Conference introduction : avi' }, + { id: 24, title: 'Intro : mov' }, + { id: 25, title: 'Conference introduction : avi' }, ], }, ], diff --git a/packages/docs/src/examples/v-treeview/prop-selectable.vue b/packages/docs/src/examples/v-treeview/prop-selectable.vue index e557a84b0de..2bbb66ac5fa 100644 --- a/packages/docs/src/examples/v-treeview/prop-selectable.vue +++ b/packages/docs/src/examples/v-treeview/prop-selectable.vue @@ -11,42 +11,42 @@ const items = ref([ { id: 1, - name: 'Applications :', + title: 'Applications :', children: [ - { id: 2, name: 'Calendar : app' }, - { id: 3, name: 'Chrome : app' }, - { id: 4, name: 'Webstorm : app' }, + { id: 2, title: 'Calendar : app' }, + { id: 3, title: 'Chrome : app' }, + { id: 4, title: 'Webstorm : app' }, ], }, { id: 5, - name: 'Documents :', + title: 'Documents :', children: [ { id: 6, - name: 'vuetify :', + title: 'vuetify :', children: [ { id: 7, - name: 'src :', + title: 'src :', children: [ - { id: 8, name: 'index : ts' }, - { id: 9, name: 'bootstrap : ts' }, + { id: 8, title: 'index : ts' }, + { id: 9, title: 'bootstrap : ts' }, ], }, ], }, { id: 10, - name: 'material2 :', + title: 'material2 :', children: [ { id: 11, - name: 'src :', + title: 'src :', children: [ - { id: 12, name: 'v-btn : ts' }, - { id: 13, name: 'v-card : ts' }, - { id: 14, name: 'v-window : ts' }, + { id: 12, title: 'v-btn : ts' }, + { id: 13, title: 'v-card : ts' }, + { id: 14, title: 'v-window : ts' }, ], }, ], @@ -55,28 +55,28 @@ }, { id: 15, - name: 'Downloads :', + title: 'Downloads :', children: [ - { id: 16, name: 'October : pdf' }, - { id: 17, name: 'November : pdf' }, - { id: 18, name: 'Tutorial : html' }, + { id: 16, title: 'October : pdf' }, + { id: 17, title: 'November : pdf' }, + { id: 18, title: 'Tutorial : html' }, ], }, { id: 19, - name: 'Videos :', + title: 'Videos :', children: [ { id: 20, - name: 'Tutorials :', + title: 'Tutorials :', children: [ - { id: 21, name: 'Basic layouts : mp4' }, - { id: 22, name: 'Advanced techniques : mp4' }, - { id: 23, name: 'All about app : dir' }, + { id: 21, title: 'Basic layouts : mp4' }, + { id: 22, title: 'Advanced techniques : mp4' }, + { id: 23, title: 'All about app : dir' }, ], }, - { id: 24, name: 'Intro : mov' }, - { id: 25, name: 'Conference introduction : avi' }, + { id: 24, title: 'Intro : mov' }, + { id: 25, title: 'Conference introduction : avi' }, ], }, ]) @@ -88,42 +88,42 @@ items: [ { id: 1, - name: 'Applications :', + title: 'Applications :', children: [ - { id: 2, name: 'Calendar : app' }, - { id: 3, name: 'Chrome : app' }, - { id: 4, name: 'Webstorm : app' }, + { id: 2, title: 'Calendar : app' }, + { id: 3, title: 'Chrome : app' }, + { id: 4, title: 'Webstorm : app' }, ], }, { id: 5, - name: 'Documents :', + title: 'Documents :', children: [ { id: 6, - name: 'vuetify :', + title: 'vuetify :', children: [ { id: 7, - name: 'src :', + title: 'src :', children: [ - { id: 8, name: 'index : ts' }, - { id: 9, name: 'bootstrap : ts' }, + { id: 8, title: 'index : ts' }, + { id: 9, title: 'bootstrap : ts' }, ], }, ], }, { id: 10, - name: 'material2 :', + title: 'material2 :', children: [ { id: 11, - name: 'src :', + title: 'src :', children: [ - { id: 12, name: 'v-btn : ts' }, - { id: 13, name: 'v-card : ts' }, - { id: 14, name: 'v-window : ts' }, + { id: 12, title: 'v-btn : ts' }, + { id: 13, title: 'v-card : ts' }, + { id: 14, title: 'v-window : ts' }, ], }, ], @@ -132,28 +132,28 @@ }, { id: 15, - name: 'Downloads :', + title: 'Downloads :', children: [ - { id: 16, name: 'October : pdf' }, - { id: 17, name: 'November : pdf' }, - { id: 18, name: 'Tutorial : html' }, + { id: 16, title: 'October : pdf' }, + { id: 17, title: 'November : pdf' }, + { id: 18, title: 'Tutorial : html' }, ], }, { id: 19, - name: 'Videos :', + title: 'Videos :', children: [ { id: 20, - name: 'Tutorials :', + title: 'Tutorials :', children: [ - { id: 21, name: 'Basic layouts : mp4' }, - { id: 22, name: 'Advanced techniques : mp4' }, - { id: 23, name: 'All about app : dir' }, + { id: 21, title: 'Basic layouts : mp4' }, + { id: 22, title: 'Advanced techniques : mp4' }, + { id: 23, title: 'All about app : dir' }, ], }, - { id: 24, name: 'Intro : mov' }, - { id: 25, name: 'Conference introduction : avi' }, + { id: 24, title: 'Intro : mov' }, + { id: 25, title: 'Conference introduction : avi' }, ], }, ], diff --git a/packages/docs/src/examples/v-treeview/prop-selected-color.vue b/packages/docs/src/examples/v-treeview/prop-selected-color.vue index 6a829d3d0fe..8e14dbf615b 100644 --- a/packages/docs/src/examples/v-treeview/prop-selected-color.vue +++ b/packages/docs/src/examples/v-treeview/prop-selected-color.vue @@ -12,42 +12,42 @@ const items = ref([ { id: 1, - name: 'Applications :', + title: 'Applications :', children: [ - { id: 2, name: 'Calendar : app' }, - { id: 3, name: 'Chrome : app' }, - { id: 4, name: 'Webstorm : app' }, + { id: 2, title: 'Calendar : app' }, + { id: 3, title: 'Chrome : app' }, + { id: 4, title: 'Webstorm : app' }, ], }, { id: 5, - name: 'Documents :', + title: 'Documents :', children: [ { id: 6, - name: 'vuetify :', + title: 'vuetify :', children: [ { id: 7, - name: 'src :', + title: 'src :', children: [ - { id: 8, name: 'index : ts' }, - { id: 9, name: 'bootstrap : ts' }, + { id: 8, title: 'index : ts' }, + { id: 9, title: 'bootstrap : ts' }, ], }, ], }, { id: 10, - name: 'material2 :', + title: 'material2 :', children: [ { id: 11, - name: 'src :', + title: 'src :', children: [ - { id: 12, name: 'v-btn : ts' }, - { id: 13, name: 'v-card : ts' }, - { id: 14, name: 'v-window : ts' }, + { id: 12, title: 'v-btn : ts' }, + { id: 13, title: 'v-card : ts' }, + { id: 14, title: 'v-window : ts' }, ], }, ], @@ -56,28 +56,28 @@ }, { id: 15, - name: 'Downloads :', + title: 'Downloads :', children: [ - { id: 16, name: 'October : pdf' }, - { id: 17, name: 'November : pdf' }, - { id: 18, name: 'Tutorial : html' }, + { id: 16, title: 'October : pdf' }, + { id: 17, title: 'November : pdf' }, + { id: 18, title: 'Tutorial : html' }, ], }, { id: 19, - name: 'Videos :', + title: 'Videos :', children: [ { id: 20, - name: 'Tutorials :', + title: 'Tutorials :', children: [ - { id: 21, name: 'Basic layouts : mp4' }, - { id: 22, name: 'Advanced techniques : mp4' }, - { id: 23, name: 'All about app : dir' }, + { id: 21, title: 'Basic layouts : mp4' }, + { id: 22, title: 'Advanced techniques : mp4' }, + { id: 23, title: 'All about app : dir' }, ], }, - { id: 24, name: 'Intro : mov' }, - { id: 25, name: 'Conference introduction : avi' }, + { id: 24, title: 'Intro : mov' }, + { id: 25, title: 'Conference introduction : avi' }, ], }, ]) @@ -89,42 +89,42 @@ items: [ { id: 1, - name: 'Applications :', + title: 'Applications :', children: [ - { id: 2, name: 'Calendar : app' }, - { id: 3, name: 'Chrome : app' }, - { id: 4, name: 'Webstorm : app' }, + { id: 2, title: 'Calendar : app' }, + { id: 3, title: 'Chrome : app' }, + { id: 4, title: 'Webstorm : app' }, ], }, { id: 5, - name: 'Documents :', + title: 'Documents :', children: [ { id: 6, - name: 'vuetify :', + title: 'vuetify :', children: [ { id: 7, - name: 'src :', + title: 'src :', children: [ - { id: 8, name: 'index : ts' }, - { id: 9, name: 'bootstrap : ts' }, + { id: 8, title: 'index : ts' }, + { id: 9, title: 'bootstrap : ts' }, ], }, ], }, { id: 10, - name: 'material2 :', + title: 'material2 :', children: [ { id: 11, - name: 'src :', + title: 'src :', children: [ - { id: 12, name: 'v-btn : ts' }, - { id: 13, name: 'v-card : ts' }, - { id: 14, name: 'v-window : ts' }, + { id: 12, title: 'v-btn : ts' }, + { id: 13, title: 'v-card : ts' }, + { id: 14, title: 'v-window : ts' }, ], }, ], @@ -133,28 +133,28 @@ }, { id: 15, - name: 'Downloads :', + title: 'Downloads :', children: [ - { id: 16, name: 'October : pdf' }, - { id: 17, name: 'November : pdf' }, - { id: 18, name: 'Tutorial : html' }, + { id: 16, title: 'October : pdf' }, + { id: 17, title: 'November : pdf' }, + { id: 18, title: 'Tutorial : html' }, ], }, { id: 19, - name: 'Videos :', + title: 'Videos :', children: [ { id: 20, - name: 'Tutorials :', + title: 'Tutorials :', children: [ - { id: 21, name: 'Basic layouts : mp4' }, - { id: 22, name: 'Advanced techniques : mp4' }, - { id: 23, name: 'All about app : dir' }, + { id: 21, title: 'Basic layouts : mp4' }, + { id: 22, title: 'Advanced techniques : mp4' }, + { id: 23, title: 'All about app : dir' }, ], }, - { id: 24, name: 'Intro : mov' }, - { id: 25, name: 'Conference introduction : avi' }, + { id: 24, title: 'Intro : mov' }, + { id: 25, title: 'Conference introduction : avi' }, ], }, ], diff --git a/packages/docs/src/examples/v-treeview/prop-selection-type.vue b/packages/docs/src/examples/v-treeview/prop-selection-type.vue index 3a7679835ba..c4d3f4379ae 100644 --- a/packages/docs/src/examples/v-treeview/prop-selection-type.vue +++ b/packages/docs/src/examples/v-treeview/prop-selection-type.vue @@ -45,16 +45,16 @@ const items = ref([ { id: 1, - name: 'Root', + title: 'Root', children: [ - { id: 2, name: 'Child #1' }, - { id: 3, name: 'Child #2' }, + { id: 2, title: 'Child #1' }, + { id: 3, title: 'Child #2' }, { id: 4, - name: 'Child #3', + title: 'Child #3', children: [ - { id: 5, name: 'Grandchild #1' }, - { id: 6, name: 'Grandchild #2' }, + { id: 5, title: 'Grandchild #1' }, + { id: 6, title: 'Grandchild #2' }, ], }, ], @@ -70,16 +70,16 @@ items: [ { id: 1, - name: 'Root', + title: 'Root', children: [ - { id: 2, name: 'Child #1' }, - { id: 3, name: 'Child #2' }, + { id: 2, title: 'Child #1' }, + { id: 3, title: 'Child #2' }, { id: 4, - name: 'Child #3', + title: 'Child #3', children: [ - { id: 5, name: 'Grandchild #1' }, - { id: 6, name: 'Grandchild #2' }, + { id: 5, title: 'Grandchild #1' }, + { id: 6, title: 'Grandchild #2' }, ], }, ], diff --git a/packages/docs/src/examples/v-treeview/prop-shaped.vue b/packages/docs/src/examples/v-treeview/prop-shaped.vue index 0950f8b9725..38bff5768cd 100644 --- a/packages/docs/src/examples/v-treeview/prop-shaped.vue +++ b/packages/docs/src/examples/v-treeview/prop-shaped.vue @@ -13,42 +13,42 @@ const items = ref([ { id: 1, - name: 'Applications :', + title: 'Applications :', children: [ - { id: 2, name: 'Calendar : app' }, - { id: 3, name: 'Chrome : app' }, - { id: 4, name: 'Webstorm : app' }, + { id: 2, title: 'Calendar : app' }, + { id: 3, title: 'Chrome : app' }, + { id: 4, title: 'Webstorm : app' }, ], }, { id: 5, - name: 'Documents :', + title: 'Documents :', children: [ { id: 6, - name: 'vuetify :', + title: 'vuetify :', children: [ { id: 7, - name: 'src :', + title: 'src :', children: [ - { id: 8, name: 'index : ts' }, - { id: 9, name: 'bootstrap : ts' }, + { id: 8, title: 'index : ts' }, + { id: 9, title: 'bootstrap : ts' }, ], }, ], }, { id: 10, - name: 'material2 :', + title: 'material2 :', children: [ { id: 11, - name: 'src :', + title: 'src :', children: [ - { id: 12, name: 'v-btn : ts' }, - { id: 13, name: 'v-card : ts' }, - { id: 14, name: 'v-window : ts' }, + { id: 12, title: 'v-btn : ts' }, + { id: 13, title: 'v-card : ts' }, + { id: 14, title: 'v-window : ts' }, ], }, ], @@ -57,28 +57,28 @@ }, { id: 15, - name: 'Downloads :', + title: 'Downloads :', children: [ - { id: 16, name: 'October : pdf' }, - { id: 17, name: 'November : pdf' }, - { id: 18, name: 'Tutorial : html' }, + { id: 16, title: 'October : pdf' }, + { id: 17, title: 'November : pdf' }, + { id: 18, title: 'Tutorial : html' }, ], }, { id: 19, - name: 'Videos :', + title: 'Videos :', children: [ { id: 20, - name: 'Tutorials :', + title: 'Tutorials :', children: [ - { id: 21, name: 'Basic layouts : mp4' }, - { id: 22, name: 'Advanced techniques : mp4' }, - { id: 23, name: 'All about app : dir' }, + { id: 21, title: 'Basic layouts : mp4' }, + { id: 22, title: 'Advanced techniques : mp4' }, + { id: 23, title: 'All about app : dir' }, ], }, - { id: 24, name: 'Intro : mov' }, - { id: 25, name: 'Conference introduction : avi' }, + { id: 24, title: 'Intro : mov' }, + { id: 25, title: 'Conference introduction : avi' }, ], }, ]) @@ -90,42 +90,42 @@ items: [ { id: 1, - name: 'Applications :', + title: 'Applications :', children: [ - { id: 2, name: 'Calendar : app' }, - { id: 3, name: 'Chrome : app' }, - { id: 4, name: 'Webstorm : app' }, + { id: 2, title: 'Calendar : app' }, + { id: 3, title: 'Chrome : app' }, + { id: 4, title: 'Webstorm : app' }, ], }, { id: 5, - name: 'Documents :', + title: 'Documents :', children: [ { id: 6, - name: 'vuetify :', + title: 'vuetify :', children: [ { id: 7, - name: 'src :', + title: 'src :', children: [ - { id: 8, name: 'index : ts' }, - { id: 9, name: 'bootstrap : ts' }, + { id: 8, title: 'index : ts' }, + { id: 9, title: 'bootstrap : ts' }, ], }, ], }, { id: 10, - name: 'material2 :', + title: 'material2 :', children: [ { id: 11, - name: 'src :', + title: 'src :', children: [ - { id: 12, name: 'v-btn : ts' }, - { id: 13, name: 'v-card : ts' }, - { id: 14, name: 'v-window : ts' }, + { id: 12, title: 'v-btn : ts' }, + { id: 13, title: 'v-card : ts' }, + { id: 14, title: 'v-window : ts' }, ], }, ], @@ -134,28 +134,28 @@ }, { id: 15, - name: 'Downloads :', + title: 'Downloads :', children: [ - { id: 16, name: 'October : pdf' }, - { id: 17, name: 'November : pdf' }, - { id: 18, name: 'Tutorial : html' }, + { id: 16, title: 'October : pdf' }, + { id: 17, title: 'November : pdf' }, + { id: 18, title: 'Tutorial : html' }, ], }, { id: 19, - name: 'Videos :', + title: 'Videos :', children: [ { id: 20, - name: 'Tutorials :', + title: 'Tutorials :', children: [ - { id: 21, name: 'Basic layouts : mp4' }, - { id: 22, name: 'Advanced techniques : mp4' }, - { id: 23, name: 'All about app : dir' }, + { id: 21, title: 'Basic layouts : mp4' }, + { id: 22, title: 'Advanced techniques : mp4' }, + { id: 23, title: 'All about app : dir' }, ], }, - { id: 24, name: 'Intro : mov' }, - { id: 25, name: 'Conference introduction : avi' }, + { id: 24, title: 'Intro : mov' }, + { id: 25, title: 'Conference introduction : avi' }, ], }, ], diff --git a/packages/docs/src/examples/v-treeview/slot-append-and-label.vue b/packages/docs/src/examples/v-treeview/slot-append-and-label.vue index 1116cb348f0..e52f27851da 100644 --- a/packages/docs/src/examples/v-treeview/slot-append-and-label.vue +++ b/packages/docs/src/examples/v-treeview/slot-append-and-label.vue @@ -2,7 +2,7 @@ - - - + diff --git a/packages/docs/src/layouts/home.vue b/packages/docs/src/layouts/home.vue index c3bd0fcded0..f131c13f404 100644 --- a/packages/docs/src/layouts/home.vue +++ b/packages/docs/src/layouts/home.vue @@ -1,8 +1,6 @@