├── .editorconfig
├── .github
├── FUNDING.yml
├── contributing
│ ├── oxford-comma.jpg
│ └── writing-guide.md
├── dependabot.yml
├── pull_request_template.md
├── scripts
│ └── tag-alert-blocks.js
└── workflows
│ ├── automerge.yml
│ └── ryu-cho.yaml
├── .gitignore
├── .npmrc
├── .prettierignore
├── .prettierrc
├── .vitepress
├── config.ts
├── headerMdPlugin.ts
├── inlined-scripts
│ ├── perfops.js
│ ├── restorePreference.js
│ └── uwu.js
├── textAdMdPlugin.ts
└── theme
│ ├── components
│ ├── Banner.vue
│ ├── Home.vue
│ ├── NewsLetter.vue
│ ├── PreferenceSwitch.vue
│ ├── PreferenceTooltip.vue
│ ├── ReplLoading.vue
│ ├── SecurityUpdateButton.vue
│ ├── SiteMap.vue
│ ├── SponsorsAside.vue
│ ├── SponsorsGroup.vue
│ ├── TextAd.vue
│ ├── VueJobs.vue
│ ├── VueMasteryModal.vue
│ ├── VueSchoolLink.vue
│ ├── preferences.ts
│ └── sponsors.ts
│ ├── index.ts
│ └── styles
│ ├── badges.css
│ ├── index.css
│ ├── inline-demo.css
│ ├── options-boxes.css
│ ├── pages.css
│ ├── style-guide.css
│ ├── utilities.css
│ └── vue-mastery.css
├── LICENSE
├── README.md
├── env.d.ts
├── netlify.toml
├── package.json
├── pnpm-lock.yaml
├── src
├── about
│ ├── coc.md
│ ├── community-guide.md
│ ├── faq.md
│ ├── images
│ │ ├── ben-hong.jpeg
│ │ └── evan-you.jpeg
│ ├── releases.md
│ ├── team.md
│ └── team
│ │ ├── Member.ts
│ │ ├── TeamHero.vue
│ │ ├── TeamList.vue
│ │ ├── TeamMember.vue
│ │ ├── TeamPage.vue
│ │ ├── members-core.json
│ │ ├── members-emeriti.json
│ │ └── members-partner.json
├── api
│ ├── ApiIndex.vue
│ ├── api.data.ts
│ ├── application.md
│ ├── built-in-components.md
│ ├── built-in-directives.md
│ ├── built-in-special-attributes.md
│ ├── built-in-special-elements.md
│ ├── compile-time-flags.md
│ ├── component-instance.md
│ ├── composition-api-dependency-injection.md
│ ├── composition-api-lifecycle.md
│ ├── composition-api-setup.md
│ ├── custom-renderer.md
│ ├── general.md
│ ├── index.md
│ ├── options-composition.md
│ ├── options-lifecycle.md
│ ├── options-misc.md
│ ├── options-rendering.md
│ ├── options-state.md
│ ├── reactivity-advanced.md
│ ├── reactivity-core.md
│ ├── reactivity-utilities.md
│ ├── render-function.md
│ ├── sfc-css-features.md
│ ├── sfc-script-setup.md
│ ├── sfc-spec.md
│ ├── ssr.md
│ └── utility-types.md
├── ecosystem
│ ├── newsletters.md
│ ├── themes.md
│ └── themes
│ │ ├── ThemeContact.vue
│ │ ├── ThemeHero.vue
│ │ ├── ThemeList.vue
│ │ ├── ThemeListItem.vue
│ │ ├── ThemePage.vue
│ │ ├── ThemeProduct.vue
│ │ └── themes.json
├── error-reference
│ ├── ErrorsTable.vue
│ ├── errors.data.ts
│ └── index.md
├── examples
│ ├── ExampleRepl.vue
│ ├── examples.data.ts
│ ├── index.md
│ ├── src
│ │ ├── attribute-bindings
│ │ │ ├── App
│ │ │ │ ├── composition.js
│ │ │ │ ├── options.js
│ │ │ │ ├── style.css
│ │ │ │ └── template.html
│ │ │ └── description.txt
│ │ ├── cells
│ │ │ ├── App
│ │ │ │ ├── composition.js
│ │ │ │ ├── options.js
│ │ │ │ ├── style.css
│ │ │ │ └── template.html
│ │ │ ├── Cell
│ │ │ │ ├── composition.js
│ │ │ │ ├── options.js
│ │ │ │ ├── style.css
│ │ │ │ └── template.html
│ │ │ ├── description.txt
│ │ │ └── store.js
│ │ ├── circle-drawer
│ │ │ ├── App
│ │ │ │ ├── composition.js
│ │ │ │ ├── options.js
│ │ │ │ ├── style.css
│ │ │ │ └── template.html
│ │ │ └── description.txt
│ │ ├── conditionals-and-loops
│ │ │ ├── App
│ │ │ │ ├── composition.js
│ │ │ │ ├── options.js
│ │ │ │ └── template.html
│ │ │ └── description.txt
│ │ ├── counter
│ │ │ ├── App
│ │ │ │ ├── composition.js
│ │ │ │ ├── options.js
│ │ │ │ └── template.html
│ │ │ └── description.txt
│ │ ├── crud
│ │ │ ├── App
│ │ │ │ ├── composition.js
│ │ │ │ ├── options.js
│ │ │ │ ├── style.css
│ │ │ │ └── template.html
│ │ │ └── description.txt
│ │ ├── fetching-data
│ │ │ ├── App
│ │ │ │ ├── composition.js
│ │ │ │ ├── options.js
│ │ │ │ ├── style.css
│ │ │ │ └── template.html
│ │ │ └── description.txt
│ │ ├── flight-booker
│ │ │ ├── App
│ │ │ │ ├── composition.js
│ │ │ │ ├── options.js
│ │ │ │ ├── style.css
│ │ │ │ └── template.html
│ │ │ └── description.txt
│ │ ├── form-bindings
│ │ │ ├── App
│ │ │ │ ├── composition.js
│ │ │ │ ├── options.js
│ │ │ │ └── template.html
│ │ │ └── description.txt
│ │ ├── grid
│ │ │ ├── App
│ │ │ │ ├── composition.js
│ │ │ │ ├── options.js
│ │ │ │ └── template.html
│ │ │ ├── Grid
│ │ │ │ ├── composition.js
│ │ │ │ ├── options.js
│ │ │ │ ├── style.css
│ │ │ │ └── template.html
│ │ │ └── description.txt
│ │ ├── handling-input
│ │ │ ├── App
│ │ │ │ ├── composition.js
│ │ │ │ ├── options.js
│ │ │ │ ├── style.css
│ │ │ │ └── template.html
│ │ │ └── description.txt
│ │ ├── hello-world
│ │ │ ├── App
│ │ │ │ ├── composition.js
│ │ │ │ ├── options.js
│ │ │ │ └── template.html
│ │ │ └── description.txt
│ │ ├── list-transition
│ │ │ ├── App
│ │ │ │ ├── composition.js
│ │ │ │ ├── options.js
│ │ │ │ ├── style.css
│ │ │ │ └── template.html
│ │ │ ├── description.txt
│ │ │ └── import-map.json
│ │ ├── markdown
│ │ │ ├── App
│ │ │ │ ├── composition.js
│ │ │ │ ├── options.js
│ │ │ │ ├── style.css
│ │ │ │ └── template.html
│ │ │ ├── description.txt
│ │ │ └── import-map.json
│ │ ├── modal
│ │ │ ├── App
│ │ │ │ ├── composition.js
│ │ │ │ ├── options.js
│ │ │ │ └── template.html
│ │ │ ├── Modal
│ │ │ │ ├── composition.js
│ │ │ │ ├── options.js
│ │ │ │ ├── style.css
│ │ │ │ └── template.html
│ │ │ └── description.txt
│ │ ├── simple-component
│ │ │ ├── App
│ │ │ │ ├── composition.js
│ │ │ │ ├── options.js
│ │ │ │ └── template.html
│ │ │ ├── TodoItem
│ │ │ │ ├── composition.js
│ │ │ │ ├── options.js
│ │ │ │ └── template.html
│ │ │ └── description.txt
│ │ ├── svg
│ │ │ ├── App
│ │ │ │ ├── composition.js
│ │ │ │ ├── options.js
│ │ │ │ ├── style.css
│ │ │ │ └── template.html
│ │ │ ├── AxisLabel
│ │ │ │ ├── composition.js
│ │ │ │ ├── options.js
│ │ │ │ └── template.html
│ │ │ ├── PolyGraph
│ │ │ │ ├── composition.js
│ │ │ │ ├── options.js
│ │ │ │ └── template.html
│ │ │ ├── description.txt
│ │ │ └── util.js
│ │ ├── temperature-converter
│ │ │ ├── App
│ │ │ │ ├── composition.js
│ │ │ │ ├── options.js
│ │ │ │ └── template.html
│ │ │ └── description.txt
│ │ ├── timer
│ │ │ ├── App
│ │ │ │ ├── composition.js
│ │ │ │ ├── options.js
│ │ │ │ ├── style.css
│ │ │ │ └── template.html
│ │ │ └── description.txt
│ │ ├── todomvc
│ │ │ ├── App
│ │ │ │ ├── composition.js
│ │ │ │ ├── options.js
│ │ │ │ ├── style.css
│ │ │ │ └── template.html
│ │ │ └── description.txt
│ │ └── tree
│ │ │ ├── App
│ │ │ ├── composition.js
│ │ │ ├── options.js
│ │ │ ├── style.css
│ │ │ └── template.html
│ │ │ ├── TreeItem
│ │ │ ├── composition.js
│ │ │ ├── options.js
│ │ │ └── template.html
│ │ │ └── description.txt
│ └── utils.ts
├── glossary
│ └── index.md
├── guide
│ ├── best-practices
│ │ ├── accessibility.md
│ │ ├── images
│ │ │ ├── AccessibilityChromeDeveloperTools.png
│ │ │ ├── AccessibleARIAdescribedby.png
│ │ │ ├── AccessibleARIAlabelDevTools.png
│ │ │ ├── AccessibleARIAlabelledbyDevTools.png
│ │ │ ├── AccessibleLabelChromeDevTools.png
│ │ │ └── AccessiblePlaceholder.png
│ │ ├── performance.md
│ │ ├── production-deployment.md
│ │ └── security.md
│ ├── built-ins
│ │ ├── images
│ │ │ └── transition-classes.png
│ │ ├── keep-alive-demos
│ │ │ ├── CompA.vue
│ │ │ ├── CompB.vue
│ │ │ └── SwitchComponent.vue
│ │ ├── keep-alive.md
│ │ ├── suspense.md
│ │ ├── teleport.md
│ │ ├── transition-demos
│ │ │ ├── Basic.vue
│ │ │ ├── BetweenComponents.vue
│ │ │ ├── BetweenElements.vue
│ │ │ ├── CssAnimation.vue
│ │ │ ├── JsHooks.vue
│ │ │ ├── ListBasic.vue
│ │ │ ├── ListMove.vue
│ │ │ ├── ListStagger.vue
│ │ │ ├── NestedTransitions.vue
│ │ │ └── SlideFade.vue
│ │ ├── transition-group.md
│ │ └── transition.md
│ ├── components
│ │ ├── async.md
│ │ ├── attrs.md
│ │ ├── events.md
│ │ ├── images
│ │ │ ├── named-slots.png
│ │ │ ├── prop-drilling.png
│ │ │ ├── provide-inject.png
│ │ │ ├── scoped-slots.svg
│ │ │ └── slots.png
│ │ ├── props.md
│ │ ├── provide-inject.md
│ │ ├── registration.md
│ │ ├── slots.md
│ │ └── v-model.md
│ ├── essentials
│ │ ├── application.md
│ │ ├── class-and-style.md
│ │ ├── component-basics.md
│ │ ├── computed.md
│ │ ├── conditional.md
│ │ ├── event-handling.md
│ │ ├── forms.md
│ │ ├── images
│ │ │ ├── components.png
│ │ │ ├── directive.png
│ │ │ └── lifecycle.png
│ │ ├── lifecycle.md
│ │ ├── list.md
│ │ ├── reactivity-fundamentals.md
│ │ ├── template-refs.md
│ │ ├── template-syntax.md
│ │ └── watchers.md
│ ├── extras
│ │ ├── animation.md
│ │ ├── composition-api-faq.md
│ │ ├── demos
│ │ │ ├── AnimateWatcher.vue
│ │ │ ├── Colors.vue
│ │ │ ├── DisabledButton.vue
│ │ │ ├── ElasticHeader.vue
│ │ │ ├── SpreadSheet.vue
│ │ │ ├── SpreadSheetCell.vue
│ │ │ └── spreadSheetStore.js
│ │ ├── images
│ │ │ ├── composition-api-after.png
│ │ │ ├── options-api.png
│ │ │ └── render-pipeline.png
│ │ ├── reactivity-in-depth.md
│ │ ├── reactivity-transform.md
│ │ ├── render-function.md
│ │ ├── rendering-mechanism.md
│ │ ├── ways-of-using-vue.md
│ │ └── web-components.md
│ ├── introduction.md
│ ├── quick-start.md
│ ├── reusability
│ │ ├── composables.md
│ │ ├── custom-directives.md
│ │ ├── mouse.js
│ │ └── plugins.md
│ ├── scaling-up
│ │ ├── images
│ │ │ └── state-flow.png
│ │ ├── routing.md
│ │ ├── sfc.md
│ │ ├── ssr.md
│ │ ├── state-management.md
│ │ ├── testing.md
│ │ └── tooling.md
│ └── typescript
│ │ ├── composition-api.md
│ │ ├── images
│ │ └── takeover-mode.png
│ │ ├── options-api.md
│ │ └── overview.md
├── index.md
├── partners
│ ├── [partnerId].md
│ ├── [partnerId].paths.ts
│ ├── all.md
│ ├── components
│ │ ├── PartnerAll.vue
│ │ ├── PartnerCard.vue
│ │ ├── PartnerHero.vue
│ │ ├── PartnerJoin.vue
│ │ ├── PartnerLanding.vue
│ │ ├── PartnerList.vue
│ │ ├── PartnerLocation.vue
│ │ ├── PartnerPage.vue
│ │ ├── type.ts
│ │ └── utils.ts
│ ├── index.md
│ └── partners.json
├── public
│ ├── _headers
│ ├── _redirects
│ ├── images
│ │ ├── logo.png
│ │ ├── partners
│ │ │ ├── 64robots-hero.jpg
│ │ │ ├── 64robots.svg
│ │ │ ├── curotec-hero.jpg
│ │ │ ├── curotec.png
│ │ │ ├── epicmax.png
│ │ │ ├── epicmax.svg
│ │ │ ├── herodevs-dark.png
│ │ │ ├── herodevs-hero.png
│ │ │ ├── herodevs.png
│ │ │ ├── jump24-dark.svg
│ │ │ ├── jump24-hero.jpg
│ │ │ ├── jump24.svg
│ │ │ ├── monterail-dark.png
│ │ │ ├── monterail-hero.png
│ │ │ ├── monterail.png
│ │ │ ├── passionatepeople-dark.png
│ │ │ ├── passionatepeople-hero.jpg
│ │ │ ├── passionatepeople.png
│ │ │ ├── redberry-hero.jpg
│ │ │ ├── redberry.png
│ │ │ ├── tighten-dark.svg
│ │ │ ├── tighten-hero.jpg
│ │ │ ├── tighten.svg
│ │ │ ├── vehikl-dark.svg
│ │ │ ├── vehikl-hero.jpg
│ │ │ ├── vehikl.svg
│ │ │ ├── webreinvent-hero.jpg
│ │ │ └── webreinvent.png
│ │ └── paypal.png
│ ├── logo-uwu.png
│ ├── logo.svg
│ ├── service-worker.js
│ ├── viteconf.svg
│ └── vuemastery
│ │ ├── background-bubbles-vuemastery.svg
│ │ ├── lock-vuemastery.svg
│ │ ├── unlock-vuemastery.svg
│ │ └── vuemastery-white.svg
├── sponsor
│ └── index.md
├── style-guide
│ ├── index.md
│ ├── rules-essential.md
│ ├── rules-recommended.md
│ ├── rules-strongly-recommended.md
│ └── rules-use-with-caution.md
├── translations
│ └── index.md
└── tutorial
│ ├── TutorialRepl.vue
│ ├── index.md
│ ├── src
│ ├── step-1
│ │ ├── App
│ │ │ └── template.html
│ │ └── description.md
│ ├── step-10
│ │ ├── App
│ │ │ ├── composition.js
│ │ │ ├── options.js
│ │ │ └── template.html
│ │ ├── _hint
│ │ │ └── App
│ │ │ │ ├── composition.js
│ │ │ │ └── options.js
│ │ └── description.md
│ ├── step-11
│ │ ├── App
│ │ │ ├── composition.js
│ │ │ ├── options.js
│ │ │ └── template.html
│ │ ├── ChildComp
│ │ │ └── template.html
│ │ ├── _hint
│ │ │ └── App
│ │ │ │ ├── composition.js
│ │ │ │ ├── options.js
│ │ │ │ └── template.html
│ │ └── description.md
│ ├── step-12
│ │ ├── App
│ │ │ ├── composition.js
│ │ │ ├── options.js
│ │ │ └── template.html
│ │ ├── ChildComp
│ │ │ ├── composition.js
│ │ │ ├── options.js
│ │ │ └── template.html
│ │ ├── _hint
│ │ │ └── App
│ │ │ │ └── template.html
│ │ └── description.md
│ ├── step-13
│ │ ├── App
│ │ │ ├── composition.js
│ │ │ ├── options.js
│ │ │ └── template.html
│ │ ├── ChildComp
│ │ │ ├── composition.js
│ │ │ ├── options.js
│ │ │ └── template.html
│ │ ├── _hint
│ │ │ └── App
│ │ │ │ └── template.html
│ │ └── description.md
│ ├── step-14
│ │ ├── App
│ │ │ ├── composition.js
│ │ │ ├── options.js
│ │ │ └── template.html
│ │ ├── ChildComp
│ │ │ └── template.html
│ │ ├── _hint
│ │ │ └── App
│ │ │ │ └── template.html
│ │ └── description.md
│ ├── step-15
│ │ ├── App
│ │ │ ├── composition.js
│ │ │ ├── options.js
│ │ │ ├── style.css
│ │ │ └── template.html
│ │ ├── description.md
│ │ └── import-map.json
│ ├── step-2
│ │ ├── App
│ │ │ ├── composition.js
│ │ │ ├── options.js
│ │ │ └── template.html
│ │ ├── _hint
│ │ │ └── App
│ │ │ │ ├── composition.js
│ │ │ │ ├── options.js
│ │ │ │ └── template.html
│ │ └── description.md
│ ├── step-3
│ │ ├── App
│ │ │ ├── composition.js
│ │ │ ├── options.js
│ │ │ ├── style.css
│ │ │ └── template.html
│ │ ├── _hint
│ │ │ └── App
│ │ │ │ └── template.html
│ │ └── description.md
│ ├── step-4
│ │ ├── App
│ │ │ ├── composition.js
│ │ │ ├── options.js
│ │ │ └── template.html
│ │ ├── _hint
│ │ │ └── App
│ │ │ │ ├── composition.js
│ │ │ │ ├── options.js
│ │ │ │ └── template.html
│ │ └── description.md
│ ├── step-5
│ │ ├── App
│ │ │ ├── composition.js
│ │ │ ├── options.js
│ │ │ └── template.html
│ │ ├── _hint
│ │ │ └── App
│ │ │ │ ├── composition.js
│ │ │ │ ├── options.js
│ │ │ │ └── template.html
│ │ └── description.md
│ ├── step-6
│ │ ├── App
│ │ │ ├── composition.js
│ │ │ ├── options.js
│ │ │ └── template.html
│ │ ├── _hint
│ │ │ └── App
│ │ │ │ ├── composition.js
│ │ │ │ ├── options.js
│ │ │ │ └── template.html
│ │ └── description.md
│ ├── step-7
│ │ ├── App
│ │ │ ├── composition.js
│ │ │ ├── options.js
│ │ │ └── template.html
│ │ ├── _hint
│ │ │ └── App
│ │ │ │ ├── composition.js
│ │ │ │ └── options.js
│ │ └── description.md
│ ├── step-8
│ │ ├── App
│ │ │ ├── composition.js
│ │ │ ├── options.js
│ │ │ ├── style.css
│ │ │ └── template.html
│ │ ├── _hint
│ │ │ └── App
│ │ │ │ ├── composition.js
│ │ │ │ ├── options.js
│ │ │ │ └── template.html
│ │ └── description.md
│ └── step-9
│ │ ├── App
│ │ ├── composition.js
│ │ ├── options.js
│ │ └── template.html
│ │ ├── _hint
│ │ └── App
│ │ │ ├── composition.js
│ │ │ └── options.js
│ │ └── description.md
│ └── tutorial.data.ts
├── tsconfig.json
└── vercel.json
/.editorconfig:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/.editorconfig
--------------------------------------------------------------------------------
/.github/FUNDING.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/.github/FUNDING.yml
--------------------------------------------------------------------------------
/.github/contributing/oxford-comma.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/.github/contributing/oxford-comma.jpg
--------------------------------------------------------------------------------
/.github/contributing/writing-guide.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/.github/contributing/writing-guide.md
--------------------------------------------------------------------------------
/.github/dependabot.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/.github/dependabot.yml
--------------------------------------------------------------------------------
/.github/pull_request_template.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/.github/pull_request_template.md
--------------------------------------------------------------------------------
/.github/scripts/tag-alert-blocks.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/.github/scripts/tag-alert-blocks.js
--------------------------------------------------------------------------------
/.github/workflows/automerge.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/.github/workflows/automerge.yml
--------------------------------------------------------------------------------
/.github/workflows/ryu-cho.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/.github/workflows/ryu-cho.yaml
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/.gitignore
--------------------------------------------------------------------------------
/.npmrc:
--------------------------------------------------------------------------------
1 | package-manager-strict=false
2 |
--------------------------------------------------------------------------------
/.prettierignore:
--------------------------------------------------------------------------------
1 | *.vue
2 |
--------------------------------------------------------------------------------
/.prettierrc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/.prettierrc
--------------------------------------------------------------------------------
/.vitepress/config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/.vitepress/config.ts
--------------------------------------------------------------------------------
/.vitepress/headerMdPlugin.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/.vitepress/headerMdPlugin.ts
--------------------------------------------------------------------------------
/.vitepress/inlined-scripts/perfops.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/.vitepress/inlined-scripts/perfops.js
--------------------------------------------------------------------------------
/.vitepress/inlined-scripts/restorePreference.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/.vitepress/inlined-scripts/restorePreference.js
--------------------------------------------------------------------------------
/.vitepress/inlined-scripts/uwu.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/.vitepress/inlined-scripts/uwu.js
--------------------------------------------------------------------------------
/.vitepress/textAdMdPlugin.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/.vitepress/textAdMdPlugin.ts
--------------------------------------------------------------------------------
/.vitepress/theme/components/Banner.vue:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/.vitepress/theme/components/Banner.vue
--------------------------------------------------------------------------------
/.vitepress/theme/components/Home.vue:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/.vitepress/theme/components/Home.vue
--------------------------------------------------------------------------------
/.vitepress/theme/components/NewsLetter.vue:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/.vitepress/theme/components/NewsLetter.vue
--------------------------------------------------------------------------------
/.vitepress/theme/components/PreferenceSwitch.vue:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/.vitepress/theme/components/PreferenceSwitch.vue
--------------------------------------------------------------------------------
/.vitepress/theme/components/PreferenceTooltip.vue:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/.vitepress/theme/components/PreferenceTooltip.vue
--------------------------------------------------------------------------------
/.vitepress/theme/components/ReplLoading.vue:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/.vitepress/theme/components/ReplLoading.vue
--------------------------------------------------------------------------------
/.vitepress/theme/components/SecurityUpdateButton.vue:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/.vitepress/theme/components/SecurityUpdateButton.vue
--------------------------------------------------------------------------------
/.vitepress/theme/components/SiteMap.vue:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/.vitepress/theme/components/SiteMap.vue
--------------------------------------------------------------------------------
/.vitepress/theme/components/SponsorsAside.vue:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/.vitepress/theme/components/SponsorsAside.vue
--------------------------------------------------------------------------------
/.vitepress/theme/components/SponsorsGroup.vue:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/.vitepress/theme/components/SponsorsGroup.vue
--------------------------------------------------------------------------------
/.vitepress/theme/components/TextAd.vue:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/.vitepress/theme/components/TextAd.vue
--------------------------------------------------------------------------------
/.vitepress/theme/components/VueJobs.vue:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/.vitepress/theme/components/VueJobs.vue
--------------------------------------------------------------------------------
/.vitepress/theme/components/VueMasteryModal.vue:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/.vitepress/theme/components/VueMasteryModal.vue
--------------------------------------------------------------------------------
/.vitepress/theme/components/VueSchoolLink.vue:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/.vitepress/theme/components/VueSchoolLink.vue
--------------------------------------------------------------------------------
/.vitepress/theme/components/preferences.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/.vitepress/theme/components/preferences.ts
--------------------------------------------------------------------------------
/.vitepress/theme/components/sponsors.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/.vitepress/theme/components/sponsors.ts
--------------------------------------------------------------------------------
/.vitepress/theme/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/.vitepress/theme/index.ts
--------------------------------------------------------------------------------
/.vitepress/theme/styles/badges.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/.vitepress/theme/styles/badges.css
--------------------------------------------------------------------------------
/.vitepress/theme/styles/index.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/.vitepress/theme/styles/index.css
--------------------------------------------------------------------------------
/.vitepress/theme/styles/inline-demo.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/.vitepress/theme/styles/inline-demo.css
--------------------------------------------------------------------------------
/.vitepress/theme/styles/options-boxes.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/.vitepress/theme/styles/options-boxes.css
--------------------------------------------------------------------------------
/.vitepress/theme/styles/pages.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/.vitepress/theme/styles/pages.css
--------------------------------------------------------------------------------
/.vitepress/theme/styles/style-guide.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/.vitepress/theme/styles/style-guide.css
--------------------------------------------------------------------------------
/.vitepress/theme/styles/utilities.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/.vitepress/theme/styles/utilities.css
--------------------------------------------------------------------------------
/.vitepress/theme/styles/vue-mastery.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/.vitepress/theme/styles/vue-mastery.css
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/LICENSE
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/README.md
--------------------------------------------------------------------------------
/env.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/env.d.ts
--------------------------------------------------------------------------------
/netlify.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/netlify.toml
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/package.json
--------------------------------------------------------------------------------
/pnpm-lock.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/pnpm-lock.yaml
--------------------------------------------------------------------------------
/src/about/coc.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/about/coc.md
--------------------------------------------------------------------------------
/src/about/community-guide.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/about/community-guide.md
--------------------------------------------------------------------------------
/src/about/faq.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/about/faq.md
--------------------------------------------------------------------------------
/src/about/images/ben-hong.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/about/images/ben-hong.jpeg
--------------------------------------------------------------------------------
/src/about/images/evan-you.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/about/images/evan-you.jpeg
--------------------------------------------------------------------------------
/src/about/releases.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/about/releases.md
--------------------------------------------------------------------------------
/src/about/team.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/about/team.md
--------------------------------------------------------------------------------
/src/about/team/Member.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/about/team/Member.ts
--------------------------------------------------------------------------------
/src/about/team/TeamHero.vue:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/about/team/TeamHero.vue
--------------------------------------------------------------------------------
/src/about/team/TeamList.vue:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/about/team/TeamList.vue
--------------------------------------------------------------------------------
/src/about/team/TeamMember.vue:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/about/team/TeamMember.vue
--------------------------------------------------------------------------------
/src/about/team/TeamPage.vue:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/about/team/TeamPage.vue
--------------------------------------------------------------------------------
/src/about/team/members-core.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/about/team/members-core.json
--------------------------------------------------------------------------------
/src/about/team/members-emeriti.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/about/team/members-emeriti.json
--------------------------------------------------------------------------------
/src/about/team/members-partner.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/about/team/members-partner.json
--------------------------------------------------------------------------------
/src/api/ApiIndex.vue:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/api/ApiIndex.vue
--------------------------------------------------------------------------------
/src/api/api.data.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/api/api.data.ts
--------------------------------------------------------------------------------
/src/api/application.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/api/application.md
--------------------------------------------------------------------------------
/src/api/built-in-components.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/api/built-in-components.md
--------------------------------------------------------------------------------
/src/api/built-in-directives.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/api/built-in-directives.md
--------------------------------------------------------------------------------
/src/api/built-in-special-attributes.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/api/built-in-special-attributes.md
--------------------------------------------------------------------------------
/src/api/built-in-special-elements.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/api/built-in-special-elements.md
--------------------------------------------------------------------------------
/src/api/compile-time-flags.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/api/compile-time-flags.md
--------------------------------------------------------------------------------
/src/api/component-instance.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/api/component-instance.md
--------------------------------------------------------------------------------
/src/api/composition-api-dependency-injection.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/api/composition-api-dependency-injection.md
--------------------------------------------------------------------------------
/src/api/composition-api-lifecycle.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/api/composition-api-lifecycle.md
--------------------------------------------------------------------------------
/src/api/composition-api-setup.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/api/composition-api-setup.md
--------------------------------------------------------------------------------
/src/api/custom-renderer.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/api/custom-renderer.md
--------------------------------------------------------------------------------
/src/api/general.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/api/general.md
--------------------------------------------------------------------------------
/src/api/index.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/api/index.md
--------------------------------------------------------------------------------
/src/api/options-composition.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/api/options-composition.md
--------------------------------------------------------------------------------
/src/api/options-lifecycle.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/api/options-lifecycle.md
--------------------------------------------------------------------------------
/src/api/options-misc.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/api/options-misc.md
--------------------------------------------------------------------------------
/src/api/options-rendering.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/api/options-rendering.md
--------------------------------------------------------------------------------
/src/api/options-state.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/api/options-state.md
--------------------------------------------------------------------------------
/src/api/reactivity-advanced.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/api/reactivity-advanced.md
--------------------------------------------------------------------------------
/src/api/reactivity-core.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/api/reactivity-core.md
--------------------------------------------------------------------------------
/src/api/reactivity-utilities.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/api/reactivity-utilities.md
--------------------------------------------------------------------------------
/src/api/render-function.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/api/render-function.md
--------------------------------------------------------------------------------
/src/api/sfc-css-features.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/api/sfc-css-features.md
--------------------------------------------------------------------------------
/src/api/sfc-script-setup.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/api/sfc-script-setup.md
--------------------------------------------------------------------------------
/src/api/sfc-spec.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/api/sfc-spec.md
--------------------------------------------------------------------------------
/src/api/ssr.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/api/ssr.md
--------------------------------------------------------------------------------
/src/api/utility-types.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/api/utility-types.md
--------------------------------------------------------------------------------
/src/ecosystem/newsletters.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/ecosystem/newsletters.md
--------------------------------------------------------------------------------
/src/ecosystem/themes.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/ecosystem/themes.md
--------------------------------------------------------------------------------
/src/ecosystem/themes/ThemeContact.vue:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/ecosystem/themes/ThemeContact.vue
--------------------------------------------------------------------------------
/src/ecosystem/themes/ThemeHero.vue:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/ecosystem/themes/ThemeHero.vue
--------------------------------------------------------------------------------
/src/ecosystem/themes/ThemeList.vue:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/ecosystem/themes/ThemeList.vue
--------------------------------------------------------------------------------
/src/ecosystem/themes/ThemeListItem.vue:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/ecosystem/themes/ThemeListItem.vue
--------------------------------------------------------------------------------
/src/ecosystem/themes/ThemePage.vue:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/ecosystem/themes/ThemePage.vue
--------------------------------------------------------------------------------
/src/ecosystem/themes/ThemeProduct.vue:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/ecosystem/themes/ThemeProduct.vue
--------------------------------------------------------------------------------
/src/ecosystem/themes/themes.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/ecosystem/themes/themes.json
--------------------------------------------------------------------------------
/src/error-reference/ErrorsTable.vue:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/error-reference/ErrorsTable.vue
--------------------------------------------------------------------------------
/src/error-reference/errors.data.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/error-reference/errors.data.ts
--------------------------------------------------------------------------------
/src/error-reference/index.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/error-reference/index.md
--------------------------------------------------------------------------------
/src/examples/ExampleRepl.vue:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/ExampleRepl.vue
--------------------------------------------------------------------------------
/src/examples/examples.data.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/examples.data.ts
--------------------------------------------------------------------------------
/src/examples/index.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/index.md
--------------------------------------------------------------------------------
/src/examples/src/attribute-bindings/App/composition.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/attribute-bindings/App/composition.js
--------------------------------------------------------------------------------
/src/examples/src/attribute-bindings/App/options.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/attribute-bindings/App/options.js
--------------------------------------------------------------------------------
/src/examples/src/attribute-bindings/App/style.css:
--------------------------------------------------------------------------------
1 | .red {
2 | color: red;
3 | }
--------------------------------------------------------------------------------
/src/examples/src/attribute-bindings/App/template.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/attribute-bindings/App/template.html
--------------------------------------------------------------------------------
/src/examples/src/attribute-bindings/description.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/attribute-bindings/description.txt
--------------------------------------------------------------------------------
/src/examples/src/cells/App/composition.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/cells/App/composition.js
--------------------------------------------------------------------------------
/src/examples/src/cells/App/options.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/cells/App/options.js
--------------------------------------------------------------------------------
/src/examples/src/cells/App/style.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/cells/App/style.css
--------------------------------------------------------------------------------
/src/examples/src/cells/App/template.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/cells/App/template.html
--------------------------------------------------------------------------------
/src/examples/src/cells/Cell/composition.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/cells/Cell/composition.js
--------------------------------------------------------------------------------
/src/examples/src/cells/Cell/options.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/cells/Cell/options.js
--------------------------------------------------------------------------------
/src/examples/src/cells/Cell/style.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/cells/Cell/style.css
--------------------------------------------------------------------------------
/src/examples/src/cells/Cell/template.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/cells/Cell/template.html
--------------------------------------------------------------------------------
/src/examples/src/cells/description.txt:
--------------------------------------------------------------------------------
1 | https://eugenkiss.github.io/7guis/tasks/#cells
--------------------------------------------------------------------------------
/src/examples/src/cells/store.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/cells/store.js
--------------------------------------------------------------------------------
/src/examples/src/circle-drawer/App/composition.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/circle-drawer/App/composition.js
--------------------------------------------------------------------------------
/src/examples/src/circle-drawer/App/options.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/circle-drawer/App/options.js
--------------------------------------------------------------------------------
/src/examples/src/circle-drawer/App/style.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/circle-drawer/App/style.css
--------------------------------------------------------------------------------
/src/examples/src/circle-drawer/App/template.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/circle-drawer/App/template.html
--------------------------------------------------------------------------------
/src/examples/src/circle-drawer/description.txt:
--------------------------------------------------------------------------------
1 | https://eugenkiss.github.io/7guis/tasks/#circle
--------------------------------------------------------------------------------
/src/examples/src/conditionals-and-loops/App/composition.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/conditionals-and-loops/App/composition.js
--------------------------------------------------------------------------------
/src/examples/src/conditionals-and-loops/App/options.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/conditionals-and-loops/App/options.js
--------------------------------------------------------------------------------
/src/examples/src/conditionals-and-loops/App/template.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/conditionals-and-loops/App/template.html
--------------------------------------------------------------------------------
/src/examples/src/conditionals-and-loops/description.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/conditionals-and-loops/description.txt
--------------------------------------------------------------------------------
/src/examples/src/counter/App/composition.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/counter/App/composition.js
--------------------------------------------------------------------------------
/src/examples/src/counter/App/options.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/counter/App/options.js
--------------------------------------------------------------------------------
/src/examples/src/counter/App/template.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/counter/App/template.html
--------------------------------------------------------------------------------
/src/examples/src/counter/description.txt:
--------------------------------------------------------------------------------
1 | https://eugenkiss.github.io/7guis/tasks/#counter
--------------------------------------------------------------------------------
/src/examples/src/crud/App/composition.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/crud/App/composition.js
--------------------------------------------------------------------------------
/src/examples/src/crud/App/options.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/crud/App/options.js
--------------------------------------------------------------------------------
/src/examples/src/crud/App/style.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/crud/App/style.css
--------------------------------------------------------------------------------
/src/examples/src/crud/App/template.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/crud/App/template.html
--------------------------------------------------------------------------------
/src/examples/src/crud/description.txt:
--------------------------------------------------------------------------------
1 | https://eugenkiss.github.io/7guis/tasks/#crud
--------------------------------------------------------------------------------
/src/examples/src/fetching-data/App/composition.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/fetching-data/App/composition.js
--------------------------------------------------------------------------------
/src/examples/src/fetching-data/App/options.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/fetching-data/App/options.js
--------------------------------------------------------------------------------
/src/examples/src/fetching-data/App/style.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/fetching-data/App/style.css
--------------------------------------------------------------------------------
/src/examples/src/fetching-data/App/template.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/fetching-data/App/template.html
--------------------------------------------------------------------------------
/src/examples/src/fetching-data/description.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/fetching-data/description.txt
--------------------------------------------------------------------------------
/src/examples/src/flight-booker/App/composition.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/flight-booker/App/composition.js
--------------------------------------------------------------------------------
/src/examples/src/flight-booker/App/options.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/flight-booker/App/options.js
--------------------------------------------------------------------------------
/src/examples/src/flight-booker/App/style.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/flight-booker/App/style.css
--------------------------------------------------------------------------------
/src/examples/src/flight-booker/App/template.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/flight-booker/App/template.html
--------------------------------------------------------------------------------
/src/examples/src/flight-booker/description.txt:
--------------------------------------------------------------------------------
1 | https://eugenkiss.github.io/7guis/tasks/#flight
--------------------------------------------------------------------------------
/src/examples/src/form-bindings/App/composition.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/form-bindings/App/composition.js
--------------------------------------------------------------------------------
/src/examples/src/form-bindings/App/options.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/form-bindings/App/options.js
--------------------------------------------------------------------------------
/src/examples/src/form-bindings/App/template.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/form-bindings/App/template.html
--------------------------------------------------------------------------------
/src/examples/src/form-bindings/description.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/form-bindings/description.txt
--------------------------------------------------------------------------------
/src/examples/src/grid/App/composition.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/grid/App/composition.js
--------------------------------------------------------------------------------
/src/examples/src/grid/App/options.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/grid/App/options.js
--------------------------------------------------------------------------------
/src/examples/src/grid/App/template.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/grid/App/template.html
--------------------------------------------------------------------------------
/src/examples/src/grid/Grid/composition.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/grid/Grid/composition.js
--------------------------------------------------------------------------------
/src/examples/src/grid/Grid/options.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/grid/Grid/options.js
--------------------------------------------------------------------------------
/src/examples/src/grid/Grid/style.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/grid/Grid/style.css
--------------------------------------------------------------------------------
/src/examples/src/grid/Grid/template.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/grid/Grid/template.html
--------------------------------------------------------------------------------
/src/examples/src/grid/description.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/grid/description.txt
--------------------------------------------------------------------------------
/src/examples/src/handling-input/App/composition.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/handling-input/App/composition.js
--------------------------------------------------------------------------------
/src/examples/src/handling-input/App/options.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/handling-input/App/options.js
--------------------------------------------------------------------------------
/src/examples/src/handling-input/App/style.css:
--------------------------------------------------------------------------------
1 | button, a {
2 | display: block;
3 | margin-bottom: 1em;
4 | }
--------------------------------------------------------------------------------
/src/examples/src/handling-input/App/template.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/handling-input/App/template.html
--------------------------------------------------------------------------------
/src/examples/src/handling-input/description.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/handling-input/description.txt
--------------------------------------------------------------------------------
/src/examples/src/hello-world/App/composition.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/hello-world/App/composition.js
--------------------------------------------------------------------------------
/src/examples/src/hello-world/App/options.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/hello-world/App/options.js
--------------------------------------------------------------------------------
/src/examples/src/hello-world/App/template.html:
--------------------------------------------------------------------------------
1 |
{{ message }}
--------------------------------------------------------------------------------
/src/examples/src/hello-world/description.txt:
--------------------------------------------------------------------------------
1 | Diga "Hello World ou Olá Mundo" com a Vue!
--------------------------------------------------------------------------------
/src/examples/src/list-transition/App/composition.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/list-transition/App/composition.js
--------------------------------------------------------------------------------
/src/examples/src/list-transition/App/options.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/list-transition/App/options.js
--------------------------------------------------------------------------------
/src/examples/src/list-transition/App/style.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/list-transition/App/style.css
--------------------------------------------------------------------------------
/src/examples/src/list-transition/App/template.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/list-transition/App/template.html
--------------------------------------------------------------------------------
/src/examples/src/list-transition/description.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/list-transition/description.txt
--------------------------------------------------------------------------------
/src/examples/src/list-transition/import-map.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/list-transition/import-map.json
--------------------------------------------------------------------------------
/src/examples/src/markdown/App/composition.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/markdown/App/composition.js
--------------------------------------------------------------------------------
/src/examples/src/markdown/App/options.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/markdown/App/options.js
--------------------------------------------------------------------------------
/src/examples/src/markdown/App/style.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/markdown/App/style.css
--------------------------------------------------------------------------------
/src/examples/src/markdown/App/template.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/markdown/App/template.html
--------------------------------------------------------------------------------
/src/examples/src/markdown/description.txt:
--------------------------------------------------------------------------------
1 | Um editor de markdown simples.
--------------------------------------------------------------------------------
/src/examples/src/markdown/import-map.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/markdown/import-map.json
--------------------------------------------------------------------------------
/src/examples/src/modal/App/composition.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/modal/App/composition.js
--------------------------------------------------------------------------------
/src/examples/src/modal/App/options.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/modal/App/options.js
--------------------------------------------------------------------------------
/src/examples/src/modal/App/template.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/modal/App/template.html
--------------------------------------------------------------------------------
/src/examples/src/modal/Modal/composition.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/modal/Modal/composition.js
--------------------------------------------------------------------------------
/src/examples/src/modal/Modal/options.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/modal/Modal/options.js
--------------------------------------------------------------------------------
/src/examples/src/modal/Modal/style.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/modal/Modal/style.css
--------------------------------------------------------------------------------
/src/examples/src/modal/Modal/template.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/modal/Modal/template.html
--------------------------------------------------------------------------------
/src/examples/src/modal/description.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/modal/description.txt
--------------------------------------------------------------------------------
/src/examples/src/simple-component/App/composition.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/simple-component/App/composition.js
--------------------------------------------------------------------------------
/src/examples/src/simple-component/App/options.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/simple-component/App/options.js
--------------------------------------------------------------------------------
/src/examples/src/simple-component/App/template.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/simple-component/App/template.html
--------------------------------------------------------------------------------
/src/examples/src/simple-component/TodoItem/composition.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/simple-component/TodoItem/composition.js
--------------------------------------------------------------------------------
/src/examples/src/simple-component/TodoItem/options.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/simple-component/TodoItem/options.js
--------------------------------------------------------------------------------
/src/examples/src/simple-component/TodoItem/template.html:
--------------------------------------------------------------------------------
1 | {{ todo.text }}
--------------------------------------------------------------------------------
/src/examples/src/simple-component/description.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/simple-component/description.txt
--------------------------------------------------------------------------------
/src/examples/src/svg/App/composition.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/svg/App/composition.js
--------------------------------------------------------------------------------
/src/examples/src/svg/App/options.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/svg/App/options.js
--------------------------------------------------------------------------------
/src/examples/src/svg/App/style.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/svg/App/style.css
--------------------------------------------------------------------------------
/src/examples/src/svg/App/template.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/svg/App/template.html
--------------------------------------------------------------------------------
/src/examples/src/svg/AxisLabel/composition.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/svg/AxisLabel/composition.js
--------------------------------------------------------------------------------
/src/examples/src/svg/AxisLabel/options.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/svg/AxisLabel/options.js
--------------------------------------------------------------------------------
/src/examples/src/svg/AxisLabel/template.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/svg/AxisLabel/template.html
--------------------------------------------------------------------------------
/src/examples/src/svg/PolyGraph/composition.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/svg/PolyGraph/composition.js
--------------------------------------------------------------------------------
/src/examples/src/svg/PolyGraph/options.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/svg/PolyGraph/options.js
--------------------------------------------------------------------------------
/src/examples/src/svg/PolyGraph/template.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/svg/PolyGraph/template.html
--------------------------------------------------------------------------------
/src/examples/src/svg/description.txt:
--------------------------------------------------------------------------------
1 | Diga "Olá Mundo ou Hello World" com a Vue!
--------------------------------------------------------------------------------
/src/examples/src/svg/util.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/svg/util.js
--------------------------------------------------------------------------------
/src/examples/src/temperature-converter/App/composition.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/temperature-converter/App/composition.js
--------------------------------------------------------------------------------
/src/examples/src/temperature-converter/App/options.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/temperature-converter/App/options.js
--------------------------------------------------------------------------------
/src/examples/src/temperature-converter/App/template.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/temperature-converter/App/template.html
--------------------------------------------------------------------------------
/src/examples/src/temperature-converter/description.txt:
--------------------------------------------------------------------------------
1 | https://eugenkiss.github.io/7guis/tasks/#temp
--------------------------------------------------------------------------------
/src/examples/src/timer/App/composition.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/timer/App/composition.js
--------------------------------------------------------------------------------
/src/examples/src/timer/App/options.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/timer/App/options.js
--------------------------------------------------------------------------------
/src/examples/src/timer/App/style.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/timer/App/style.css
--------------------------------------------------------------------------------
/src/examples/src/timer/App/template.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/timer/App/template.html
--------------------------------------------------------------------------------
/src/examples/src/timer/description.txt:
--------------------------------------------------------------------------------
1 | https://eugenkiss.github.io/7guis/tasks/#timer
--------------------------------------------------------------------------------
/src/examples/src/todomvc/App/composition.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/todomvc/App/composition.js
--------------------------------------------------------------------------------
/src/examples/src/todomvc/App/options.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/todomvc/App/options.js
--------------------------------------------------------------------------------
/src/examples/src/todomvc/App/style.css:
--------------------------------------------------------------------------------
1 | @import "https://unpkg.com/todomvc-app-css@2.4.1/index.css";
--------------------------------------------------------------------------------
/src/examples/src/todomvc/App/template.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/todomvc/App/template.html
--------------------------------------------------------------------------------
/src/examples/src/todomvc/description.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/todomvc/description.txt
--------------------------------------------------------------------------------
/src/examples/src/tree/App/composition.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/tree/App/composition.js
--------------------------------------------------------------------------------
/src/examples/src/tree/App/options.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/tree/App/options.js
--------------------------------------------------------------------------------
/src/examples/src/tree/App/style.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/tree/App/style.css
--------------------------------------------------------------------------------
/src/examples/src/tree/App/template.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/tree/App/template.html
--------------------------------------------------------------------------------
/src/examples/src/tree/TreeItem/composition.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/tree/TreeItem/composition.js
--------------------------------------------------------------------------------
/src/examples/src/tree/TreeItem/options.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/tree/TreeItem/options.js
--------------------------------------------------------------------------------
/src/examples/src/tree/TreeItem/template.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/tree/TreeItem/template.html
--------------------------------------------------------------------------------
/src/examples/src/tree/description.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/src/tree/description.txt
--------------------------------------------------------------------------------
/src/examples/utils.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/examples/utils.ts
--------------------------------------------------------------------------------
/src/glossary/index.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/glossary/index.md
--------------------------------------------------------------------------------
/src/guide/best-practices/accessibility.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/best-practices/accessibility.md
--------------------------------------------------------------------------------
/src/guide/best-practices/images/AccessibilityChromeDeveloperTools.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/best-practices/images/AccessibilityChromeDeveloperTools.png
--------------------------------------------------------------------------------
/src/guide/best-practices/images/AccessibleARIAdescribedby.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/best-practices/images/AccessibleARIAdescribedby.png
--------------------------------------------------------------------------------
/src/guide/best-practices/images/AccessibleARIAlabelDevTools.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/best-practices/images/AccessibleARIAlabelDevTools.png
--------------------------------------------------------------------------------
/src/guide/best-practices/images/AccessibleARIAlabelledbyDevTools.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/best-practices/images/AccessibleARIAlabelledbyDevTools.png
--------------------------------------------------------------------------------
/src/guide/best-practices/images/AccessibleLabelChromeDevTools.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/best-practices/images/AccessibleLabelChromeDevTools.png
--------------------------------------------------------------------------------
/src/guide/best-practices/images/AccessiblePlaceholder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/best-practices/images/AccessiblePlaceholder.png
--------------------------------------------------------------------------------
/src/guide/best-practices/performance.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/best-practices/performance.md
--------------------------------------------------------------------------------
/src/guide/best-practices/production-deployment.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/best-practices/production-deployment.md
--------------------------------------------------------------------------------
/src/guide/best-practices/security.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/best-practices/security.md
--------------------------------------------------------------------------------
/src/guide/built-ins/images/transition-classes.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/built-ins/images/transition-classes.png
--------------------------------------------------------------------------------
/src/guide/built-ins/keep-alive-demos/CompA.vue:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/built-ins/keep-alive-demos/CompA.vue
--------------------------------------------------------------------------------
/src/guide/built-ins/keep-alive-demos/CompB.vue:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/built-ins/keep-alive-demos/CompB.vue
--------------------------------------------------------------------------------
/src/guide/built-ins/keep-alive-demos/SwitchComponent.vue:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/built-ins/keep-alive-demos/SwitchComponent.vue
--------------------------------------------------------------------------------
/src/guide/built-ins/keep-alive.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/built-ins/keep-alive.md
--------------------------------------------------------------------------------
/src/guide/built-ins/suspense.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/built-ins/suspense.md
--------------------------------------------------------------------------------
/src/guide/built-ins/teleport.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/built-ins/teleport.md
--------------------------------------------------------------------------------
/src/guide/built-ins/transition-demos/Basic.vue:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/built-ins/transition-demos/Basic.vue
--------------------------------------------------------------------------------
/src/guide/built-ins/transition-demos/BetweenComponents.vue:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/built-ins/transition-demos/BetweenComponents.vue
--------------------------------------------------------------------------------
/src/guide/built-ins/transition-demos/BetweenElements.vue:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/built-ins/transition-demos/BetweenElements.vue
--------------------------------------------------------------------------------
/src/guide/built-ins/transition-demos/CssAnimation.vue:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/built-ins/transition-demos/CssAnimation.vue
--------------------------------------------------------------------------------
/src/guide/built-ins/transition-demos/JsHooks.vue:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/built-ins/transition-demos/JsHooks.vue
--------------------------------------------------------------------------------
/src/guide/built-ins/transition-demos/ListBasic.vue:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/built-ins/transition-demos/ListBasic.vue
--------------------------------------------------------------------------------
/src/guide/built-ins/transition-demos/ListMove.vue:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/built-ins/transition-demos/ListMove.vue
--------------------------------------------------------------------------------
/src/guide/built-ins/transition-demos/ListStagger.vue:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/built-ins/transition-demos/ListStagger.vue
--------------------------------------------------------------------------------
/src/guide/built-ins/transition-demos/NestedTransitions.vue:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/built-ins/transition-demos/NestedTransitions.vue
--------------------------------------------------------------------------------
/src/guide/built-ins/transition-demos/SlideFade.vue:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/built-ins/transition-demos/SlideFade.vue
--------------------------------------------------------------------------------
/src/guide/built-ins/transition-group.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/built-ins/transition-group.md
--------------------------------------------------------------------------------
/src/guide/built-ins/transition.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/built-ins/transition.md
--------------------------------------------------------------------------------
/src/guide/components/async.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/components/async.md
--------------------------------------------------------------------------------
/src/guide/components/attrs.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/components/attrs.md
--------------------------------------------------------------------------------
/src/guide/components/events.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/components/events.md
--------------------------------------------------------------------------------
/src/guide/components/images/named-slots.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/components/images/named-slots.png
--------------------------------------------------------------------------------
/src/guide/components/images/prop-drilling.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/components/images/prop-drilling.png
--------------------------------------------------------------------------------
/src/guide/components/images/provide-inject.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/components/images/provide-inject.png
--------------------------------------------------------------------------------
/src/guide/components/images/scoped-slots.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/components/images/scoped-slots.svg
--------------------------------------------------------------------------------
/src/guide/components/images/slots.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/components/images/slots.png
--------------------------------------------------------------------------------
/src/guide/components/props.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/components/props.md
--------------------------------------------------------------------------------
/src/guide/components/provide-inject.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/components/provide-inject.md
--------------------------------------------------------------------------------
/src/guide/components/registration.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/components/registration.md
--------------------------------------------------------------------------------
/src/guide/components/slots.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/components/slots.md
--------------------------------------------------------------------------------
/src/guide/components/v-model.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/components/v-model.md
--------------------------------------------------------------------------------
/src/guide/essentials/application.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/essentials/application.md
--------------------------------------------------------------------------------
/src/guide/essentials/class-and-style.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/essentials/class-and-style.md
--------------------------------------------------------------------------------
/src/guide/essentials/component-basics.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/essentials/component-basics.md
--------------------------------------------------------------------------------
/src/guide/essentials/computed.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/essentials/computed.md
--------------------------------------------------------------------------------
/src/guide/essentials/conditional.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/essentials/conditional.md
--------------------------------------------------------------------------------
/src/guide/essentials/event-handling.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/essentials/event-handling.md
--------------------------------------------------------------------------------
/src/guide/essentials/forms.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/essentials/forms.md
--------------------------------------------------------------------------------
/src/guide/essentials/images/components.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/essentials/images/components.png
--------------------------------------------------------------------------------
/src/guide/essentials/images/directive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/essentials/images/directive.png
--------------------------------------------------------------------------------
/src/guide/essentials/images/lifecycle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/essentials/images/lifecycle.png
--------------------------------------------------------------------------------
/src/guide/essentials/lifecycle.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/essentials/lifecycle.md
--------------------------------------------------------------------------------
/src/guide/essentials/list.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/essentials/list.md
--------------------------------------------------------------------------------
/src/guide/essentials/reactivity-fundamentals.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/essentials/reactivity-fundamentals.md
--------------------------------------------------------------------------------
/src/guide/essentials/template-refs.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/essentials/template-refs.md
--------------------------------------------------------------------------------
/src/guide/essentials/template-syntax.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/essentials/template-syntax.md
--------------------------------------------------------------------------------
/src/guide/essentials/watchers.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/essentials/watchers.md
--------------------------------------------------------------------------------
/src/guide/extras/animation.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/extras/animation.md
--------------------------------------------------------------------------------
/src/guide/extras/composition-api-faq.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/extras/composition-api-faq.md
--------------------------------------------------------------------------------
/src/guide/extras/demos/AnimateWatcher.vue:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/extras/demos/AnimateWatcher.vue
--------------------------------------------------------------------------------
/src/guide/extras/demos/Colors.vue:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/extras/demos/Colors.vue
--------------------------------------------------------------------------------
/src/guide/extras/demos/DisabledButton.vue:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/extras/demos/DisabledButton.vue
--------------------------------------------------------------------------------
/src/guide/extras/demos/ElasticHeader.vue:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/extras/demos/ElasticHeader.vue
--------------------------------------------------------------------------------
/src/guide/extras/demos/SpreadSheet.vue:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/extras/demos/SpreadSheet.vue
--------------------------------------------------------------------------------
/src/guide/extras/demos/SpreadSheetCell.vue:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/extras/demos/SpreadSheetCell.vue
--------------------------------------------------------------------------------
/src/guide/extras/demos/spreadSheetStore.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/extras/demos/spreadSheetStore.js
--------------------------------------------------------------------------------
/src/guide/extras/images/composition-api-after.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/extras/images/composition-api-after.png
--------------------------------------------------------------------------------
/src/guide/extras/images/options-api.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/extras/images/options-api.png
--------------------------------------------------------------------------------
/src/guide/extras/images/render-pipeline.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/extras/images/render-pipeline.png
--------------------------------------------------------------------------------
/src/guide/extras/reactivity-in-depth.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/extras/reactivity-in-depth.md
--------------------------------------------------------------------------------
/src/guide/extras/reactivity-transform.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/extras/reactivity-transform.md
--------------------------------------------------------------------------------
/src/guide/extras/render-function.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/extras/render-function.md
--------------------------------------------------------------------------------
/src/guide/extras/rendering-mechanism.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/extras/rendering-mechanism.md
--------------------------------------------------------------------------------
/src/guide/extras/ways-of-using-vue.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/extras/ways-of-using-vue.md
--------------------------------------------------------------------------------
/src/guide/extras/web-components.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/extras/web-components.md
--------------------------------------------------------------------------------
/src/guide/introduction.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/introduction.md
--------------------------------------------------------------------------------
/src/guide/quick-start.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/quick-start.md
--------------------------------------------------------------------------------
/src/guide/reusability/composables.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/reusability/composables.md
--------------------------------------------------------------------------------
/src/guide/reusability/custom-directives.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/reusability/custom-directives.md
--------------------------------------------------------------------------------
/src/guide/reusability/mouse.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/reusability/mouse.js
--------------------------------------------------------------------------------
/src/guide/reusability/plugins.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/reusability/plugins.md
--------------------------------------------------------------------------------
/src/guide/scaling-up/images/state-flow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/scaling-up/images/state-flow.png
--------------------------------------------------------------------------------
/src/guide/scaling-up/routing.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/scaling-up/routing.md
--------------------------------------------------------------------------------
/src/guide/scaling-up/sfc.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/scaling-up/sfc.md
--------------------------------------------------------------------------------
/src/guide/scaling-up/ssr.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/scaling-up/ssr.md
--------------------------------------------------------------------------------
/src/guide/scaling-up/state-management.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/scaling-up/state-management.md
--------------------------------------------------------------------------------
/src/guide/scaling-up/testing.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/scaling-up/testing.md
--------------------------------------------------------------------------------
/src/guide/scaling-up/tooling.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/scaling-up/tooling.md
--------------------------------------------------------------------------------
/src/guide/typescript/composition-api.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/typescript/composition-api.md
--------------------------------------------------------------------------------
/src/guide/typescript/images/takeover-mode.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/typescript/images/takeover-mode.png
--------------------------------------------------------------------------------
/src/guide/typescript/options-api.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/typescript/options-api.md
--------------------------------------------------------------------------------
/src/guide/typescript/overview.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/guide/typescript/overview.md
--------------------------------------------------------------------------------
/src/index.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/index.md
--------------------------------------------------------------------------------
/src/partners/[partnerId].md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/partners/[partnerId].md
--------------------------------------------------------------------------------
/src/partners/[partnerId].paths.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/partners/[partnerId].paths.ts
--------------------------------------------------------------------------------
/src/partners/all.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/partners/all.md
--------------------------------------------------------------------------------
/src/partners/components/PartnerAll.vue:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/partners/components/PartnerAll.vue
--------------------------------------------------------------------------------
/src/partners/components/PartnerCard.vue:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/partners/components/PartnerCard.vue
--------------------------------------------------------------------------------
/src/partners/components/PartnerHero.vue:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/partners/components/PartnerHero.vue
--------------------------------------------------------------------------------
/src/partners/components/PartnerJoin.vue:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/partners/components/PartnerJoin.vue
--------------------------------------------------------------------------------
/src/partners/components/PartnerLanding.vue:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/partners/components/PartnerLanding.vue
--------------------------------------------------------------------------------
/src/partners/components/PartnerList.vue:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/partners/components/PartnerList.vue
--------------------------------------------------------------------------------
/src/partners/components/PartnerLocation.vue:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/partners/components/PartnerLocation.vue
--------------------------------------------------------------------------------
/src/partners/components/PartnerPage.vue:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/partners/components/PartnerPage.vue
--------------------------------------------------------------------------------
/src/partners/components/type.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/partners/components/type.ts
--------------------------------------------------------------------------------
/src/partners/components/utils.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/partners/components/utils.ts
--------------------------------------------------------------------------------
/src/partners/index.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/partners/index.md
--------------------------------------------------------------------------------
/src/partners/partners.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/partners/partners.json
--------------------------------------------------------------------------------
/src/public/_headers:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/public/_headers
--------------------------------------------------------------------------------
/src/public/_redirects:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/public/_redirects
--------------------------------------------------------------------------------
/src/public/images/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/public/images/logo.png
--------------------------------------------------------------------------------
/src/public/images/partners/64robots-hero.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/public/images/partners/64robots-hero.jpg
--------------------------------------------------------------------------------
/src/public/images/partners/64robots.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/public/images/partners/64robots.svg
--------------------------------------------------------------------------------
/src/public/images/partners/curotec-hero.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/public/images/partners/curotec-hero.jpg
--------------------------------------------------------------------------------
/src/public/images/partners/curotec.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/public/images/partners/curotec.png
--------------------------------------------------------------------------------
/src/public/images/partners/epicmax.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/public/images/partners/epicmax.png
--------------------------------------------------------------------------------
/src/public/images/partners/epicmax.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/public/images/partners/epicmax.svg
--------------------------------------------------------------------------------
/src/public/images/partners/herodevs-dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/public/images/partners/herodevs-dark.png
--------------------------------------------------------------------------------
/src/public/images/partners/herodevs-hero.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/public/images/partners/herodevs-hero.png
--------------------------------------------------------------------------------
/src/public/images/partners/herodevs.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/public/images/partners/herodevs.png
--------------------------------------------------------------------------------
/src/public/images/partners/jump24-dark.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/public/images/partners/jump24-dark.svg
--------------------------------------------------------------------------------
/src/public/images/partners/jump24-hero.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/public/images/partners/jump24-hero.jpg
--------------------------------------------------------------------------------
/src/public/images/partners/jump24.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/public/images/partners/jump24.svg
--------------------------------------------------------------------------------
/src/public/images/partners/monterail-dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/public/images/partners/monterail-dark.png
--------------------------------------------------------------------------------
/src/public/images/partners/monterail-hero.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/public/images/partners/monterail-hero.png
--------------------------------------------------------------------------------
/src/public/images/partners/monterail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/public/images/partners/monterail.png
--------------------------------------------------------------------------------
/src/public/images/partners/passionatepeople-dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/public/images/partners/passionatepeople-dark.png
--------------------------------------------------------------------------------
/src/public/images/partners/passionatepeople-hero.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/public/images/partners/passionatepeople-hero.jpg
--------------------------------------------------------------------------------
/src/public/images/partners/passionatepeople.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/public/images/partners/passionatepeople.png
--------------------------------------------------------------------------------
/src/public/images/partners/redberry-hero.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/public/images/partners/redberry-hero.jpg
--------------------------------------------------------------------------------
/src/public/images/partners/redberry.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/public/images/partners/redberry.png
--------------------------------------------------------------------------------
/src/public/images/partners/tighten-dark.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/public/images/partners/tighten-dark.svg
--------------------------------------------------------------------------------
/src/public/images/partners/tighten-hero.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/public/images/partners/tighten-hero.jpg
--------------------------------------------------------------------------------
/src/public/images/partners/tighten.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/public/images/partners/tighten.svg
--------------------------------------------------------------------------------
/src/public/images/partners/vehikl-dark.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/public/images/partners/vehikl-dark.svg
--------------------------------------------------------------------------------
/src/public/images/partners/vehikl-hero.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/public/images/partners/vehikl-hero.jpg
--------------------------------------------------------------------------------
/src/public/images/partners/vehikl.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/public/images/partners/vehikl.svg
--------------------------------------------------------------------------------
/src/public/images/partners/webreinvent-hero.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/public/images/partners/webreinvent-hero.jpg
--------------------------------------------------------------------------------
/src/public/images/partners/webreinvent.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/public/images/partners/webreinvent.png
--------------------------------------------------------------------------------
/src/public/images/paypal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/public/images/paypal.png
--------------------------------------------------------------------------------
/src/public/logo-uwu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/public/logo-uwu.png
--------------------------------------------------------------------------------
/src/public/logo.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/public/logo.svg
--------------------------------------------------------------------------------
/src/public/service-worker.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/public/service-worker.js
--------------------------------------------------------------------------------
/src/public/viteconf.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/public/viteconf.svg
--------------------------------------------------------------------------------
/src/public/vuemastery/background-bubbles-vuemastery.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/public/vuemastery/background-bubbles-vuemastery.svg
--------------------------------------------------------------------------------
/src/public/vuemastery/lock-vuemastery.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/public/vuemastery/lock-vuemastery.svg
--------------------------------------------------------------------------------
/src/public/vuemastery/unlock-vuemastery.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/public/vuemastery/unlock-vuemastery.svg
--------------------------------------------------------------------------------
/src/public/vuemastery/vuemastery-white.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/public/vuemastery/vuemastery-white.svg
--------------------------------------------------------------------------------
/src/sponsor/index.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/sponsor/index.md
--------------------------------------------------------------------------------
/src/style-guide/index.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/style-guide/index.md
--------------------------------------------------------------------------------
/src/style-guide/rules-essential.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/style-guide/rules-essential.md
--------------------------------------------------------------------------------
/src/style-guide/rules-recommended.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/style-guide/rules-recommended.md
--------------------------------------------------------------------------------
/src/style-guide/rules-strongly-recommended.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/style-guide/rules-strongly-recommended.md
--------------------------------------------------------------------------------
/src/style-guide/rules-use-with-caution.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/style-guide/rules-use-with-caution.md
--------------------------------------------------------------------------------
/src/translations/index.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/translations/index.md
--------------------------------------------------------------------------------
/src/tutorial/TutorialRepl.vue:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/tutorial/TutorialRepl.vue
--------------------------------------------------------------------------------
/src/tutorial/index.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/tutorial/index.md
--------------------------------------------------------------------------------
/src/tutorial/src/step-1/App/template.html:
--------------------------------------------------------------------------------
1 | Hello World!
2 |
--------------------------------------------------------------------------------
/src/tutorial/src/step-1/description.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/tutorial/src/step-1/description.md
--------------------------------------------------------------------------------
/src/tutorial/src/step-10/App/composition.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/tutorial/src/step-10/App/composition.js
--------------------------------------------------------------------------------
/src/tutorial/src/step-10/App/options.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/tutorial/src/step-10/App/options.js
--------------------------------------------------------------------------------
/src/tutorial/src/step-10/App/template.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/tutorial/src/step-10/App/template.html
--------------------------------------------------------------------------------
/src/tutorial/src/step-10/_hint/App/composition.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/tutorial/src/step-10/_hint/App/composition.js
--------------------------------------------------------------------------------
/src/tutorial/src/step-10/_hint/App/options.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/tutorial/src/step-10/_hint/App/options.js
--------------------------------------------------------------------------------
/src/tutorial/src/step-10/description.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/tutorial/src/step-10/description.md
--------------------------------------------------------------------------------
/src/tutorial/src/step-11/App/composition.js:
--------------------------------------------------------------------------------
1 | export default {
2 | // registar o componente
3 | }
4 |
--------------------------------------------------------------------------------
/src/tutorial/src/step-11/App/options.js:
--------------------------------------------------------------------------------
1 | export default {
2 | // registar o componente filho
3 | }
4 |
--------------------------------------------------------------------------------
/src/tutorial/src/step-11/App/template.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/src/tutorial/src/step-11/ChildComp/template.html:
--------------------------------------------------------------------------------
1 | A Child Component!
2 |
--------------------------------------------------------------------------------
/src/tutorial/src/step-11/_hint/App/composition.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/tutorial/src/step-11/_hint/App/composition.js
--------------------------------------------------------------------------------
/src/tutorial/src/step-11/_hint/App/options.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/tutorial/src/step-11/_hint/App/options.js
--------------------------------------------------------------------------------
/src/tutorial/src/step-11/_hint/App/template.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/src/tutorial/src/step-11/description.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/tutorial/src/step-11/description.md
--------------------------------------------------------------------------------
/src/tutorial/src/step-12/App/composition.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/tutorial/src/step-12/App/composition.js
--------------------------------------------------------------------------------
/src/tutorial/src/step-12/App/options.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/tutorial/src/step-12/App/options.js
--------------------------------------------------------------------------------
/src/tutorial/src/step-12/App/template.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/src/tutorial/src/step-12/ChildComp/composition.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/tutorial/src/step-12/ChildComp/composition.js
--------------------------------------------------------------------------------
/src/tutorial/src/step-12/ChildComp/options.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/tutorial/src/step-12/ChildComp/options.js
--------------------------------------------------------------------------------
/src/tutorial/src/step-12/ChildComp/template.html:
--------------------------------------------------------------------------------
1 | {{ msg || 'No props passed yet' }}
2 |
--------------------------------------------------------------------------------
/src/tutorial/src/step-12/_hint/App/template.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/src/tutorial/src/step-12/description.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/tutorial/src/step-12/description.md
--------------------------------------------------------------------------------
/src/tutorial/src/step-13/App/composition.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/tutorial/src/step-13/App/composition.js
--------------------------------------------------------------------------------
/src/tutorial/src/step-13/App/options.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/tutorial/src/step-13/App/options.js
--------------------------------------------------------------------------------
/src/tutorial/src/step-13/App/template.html:
--------------------------------------------------------------------------------
1 |
2 | {{ childMsg }}
3 |
--------------------------------------------------------------------------------
/src/tutorial/src/step-13/ChildComp/composition.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/tutorial/src/step-13/ChildComp/composition.js
--------------------------------------------------------------------------------
/src/tutorial/src/step-13/ChildComp/options.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/tutorial/src/step-13/ChildComp/options.js
--------------------------------------------------------------------------------
/src/tutorial/src/step-13/ChildComp/template.html:
--------------------------------------------------------------------------------
1 | Child component
2 |
--------------------------------------------------------------------------------
/src/tutorial/src/step-13/_hint/App/template.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/tutorial/src/step-13/_hint/App/template.html
--------------------------------------------------------------------------------
/src/tutorial/src/step-13/description.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/tutorial/src/step-13/description.md
--------------------------------------------------------------------------------
/src/tutorial/src/step-14/App/composition.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/tutorial/src/step-14/App/composition.js
--------------------------------------------------------------------------------
/src/tutorial/src/step-14/App/options.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/tutorial/src/step-14/App/options.js
--------------------------------------------------------------------------------
/src/tutorial/src/step-14/App/template.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/tutorial/src/step-14/App/template.html
--------------------------------------------------------------------------------
/src/tutorial/src/step-14/ChildComp/template.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/tutorial/src/step-14/ChildComp/template.html
--------------------------------------------------------------------------------
/src/tutorial/src/step-14/_hint/App/template.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/tutorial/src/step-14/_hint/App/template.html
--------------------------------------------------------------------------------
/src/tutorial/src/step-14/description.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/tutorial/src/step-14/description.md
--------------------------------------------------------------------------------
/src/tutorial/src/step-15/App/composition.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/tutorial/src/step-15/App/composition.js
--------------------------------------------------------------------------------
/src/tutorial/src/step-15/App/options.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/tutorial/src/step-15/App/options.js
--------------------------------------------------------------------------------
/src/tutorial/src/step-15/App/style.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/tutorial/src/step-15/App/style.css
--------------------------------------------------------------------------------
/src/tutorial/src/step-15/App/template.html:
--------------------------------------------------------------------------------
1 | 🎉 Congratulations!
2 |
--------------------------------------------------------------------------------
/src/tutorial/src/step-15/description.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/tutorial/src/step-15/description.md
--------------------------------------------------------------------------------
/src/tutorial/src/step-15/import-map.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/tutorial/src/step-15/import-map.json
--------------------------------------------------------------------------------
/src/tutorial/src/step-2/App/composition.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/tutorial/src/step-2/App/composition.js
--------------------------------------------------------------------------------
/src/tutorial/src/step-2/App/options.js:
--------------------------------------------------------------------------------
1 | export default {
2 | // opções do componente
3 | }
4 |
--------------------------------------------------------------------------------
/src/tutorial/src/step-2/App/template.html:
--------------------------------------------------------------------------------
1 | Hello World!
2 |
--------------------------------------------------------------------------------
/src/tutorial/src/step-2/_hint/App/composition.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/tutorial/src/step-2/_hint/App/composition.js
--------------------------------------------------------------------------------
/src/tutorial/src/step-2/_hint/App/options.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/tutorial/src/step-2/_hint/App/options.js
--------------------------------------------------------------------------------
/src/tutorial/src/step-2/_hint/App/template.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/tutorial/src/step-2/_hint/App/template.html
--------------------------------------------------------------------------------
/src/tutorial/src/step-2/description.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/tutorial/src/step-2/description.md
--------------------------------------------------------------------------------
/src/tutorial/src/step-3/App/composition.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/tutorial/src/step-3/App/composition.js
--------------------------------------------------------------------------------
/src/tutorial/src/step-3/App/options.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/tutorial/src/step-3/App/options.js
--------------------------------------------------------------------------------
/src/tutorial/src/step-3/App/style.css:
--------------------------------------------------------------------------------
1 | .title {
2 | color: red;
3 | }
4 |
--------------------------------------------------------------------------------
/src/tutorial/src/step-3/App/template.html:
--------------------------------------------------------------------------------
1 |
2 | Make me red
3 |
--------------------------------------------------------------------------------
/src/tutorial/src/step-3/_hint/App/template.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/tutorial/src/step-3/_hint/App/template.html
--------------------------------------------------------------------------------
/src/tutorial/src/step-3/description.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/tutorial/src/step-3/description.md
--------------------------------------------------------------------------------
/src/tutorial/src/step-4/App/composition.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/tutorial/src/step-4/App/composition.js
--------------------------------------------------------------------------------
/src/tutorial/src/step-4/App/options.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/tutorial/src/step-4/App/options.js
--------------------------------------------------------------------------------
/src/tutorial/src/step-4/App/template.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/tutorial/src/step-4/App/template.html
--------------------------------------------------------------------------------
/src/tutorial/src/step-4/_hint/App/composition.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/tutorial/src/step-4/_hint/App/composition.js
--------------------------------------------------------------------------------
/src/tutorial/src/step-4/_hint/App/options.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/tutorial/src/step-4/_hint/App/options.js
--------------------------------------------------------------------------------
/src/tutorial/src/step-4/_hint/App/template.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/tutorial/src/step-4/_hint/App/template.html
--------------------------------------------------------------------------------
/src/tutorial/src/step-4/description.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/tutorial/src/step-4/description.md
--------------------------------------------------------------------------------
/src/tutorial/src/step-5/App/composition.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/tutorial/src/step-5/App/composition.js
--------------------------------------------------------------------------------
/src/tutorial/src/step-5/App/options.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/tutorial/src/step-5/App/options.js
--------------------------------------------------------------------------------
/src/tutorial/src/step-5/App/template.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/tutorial/src/step-5/App/template.html
--------------------------------------------------------------------------------
/src/tutorial/src/step-5/_hint/App/composition.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/tutorial/src/step-5/_hint/App/composition.js
--------------------------------------------------------------------------------
/src/tutorial/src/step-5/_hint/App/options.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/tutorial/src/step-5/_hint/App/options.js
--------------------------------------------------------------------------------
/src/tutorial/src/step-5/_hint/App/template.html:
--------------------------------------------------------------------------------
1 |
2 | {{ text }}
3 |
--------------------------------------------------------------------------------
/src/tutorial/src/step-5/description.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/tutorial/src/step-5/description.md
--------------------------------------------------------------------------------
/src/tutorial/src/step-6/App/composition.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/tutorial/src/step-6/App/composition.js
--------------------------------------------------------------------------------
/src/tutorial/src/step-6/App/options.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/tutorial/src/step-6/App/options.js
--------------------------------------------------------------------------------
/src/tutorial/src/step-6/App/template.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/tutorial/src/step-6/App/template.html
--------------------------------------------------------------------------------
/src/tutorial/src/step-6/_hint/App/composition.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/tutorial/src/step-6/_hint/App/composition.js
--------------------------------------------------------------------------------
/src/tutorial/src/step-6/_hint/App/options.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/tutorial/src/step-6/_hint/App/options.js
--------------------------------------------------------------------------------
/src/tutorial/src/step-6/_hint/App/template.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/tutorial/src/step-6/_hint/App/template.html
--------------------------------------------------------------------------------
/src/tutorial/src/step-6/description.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/tutorial/src/step-6/description.md
--------------------------------------------------------------------------------
/src/tutorial/src/step-7/App/composition.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/tutorial/src/step-7/App/composition.js
--------------------------------------------------------------------------------
/src/tutorial/src/step-7/App/options.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/tutorial/src/step-7/App/options.js
--------------------------------------------------------------------------------
/src/tutorial/src/step-7/App/template.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/tutorial/src/step-7/App/template.html
--------------------------------------------------------------------------------
/src/tutorial/src/step-7/_hint/App/composition.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/tutorial/src/step-7/_hint/App/composition.js
--------------------------------------------------------------------------------
/src/tutorial/src/step-7/_hint/App/options.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/tutorial/src/step-7/_hint/App/options.js
--------------------------------------------------------------------------------
/src/tutorial/src/step-7/description.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/tutorial/src/step-7/description.md
--------------------------------------------------------------------------------
/src/tutorial/src/step-8/App/composition.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/tutorial/src/step-8/App/composition.js
--------------------------------------------------------------------------------
/src/tutorial/src/step-8/App/options.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/tutorial/src/step-8/App/options.js
--------------------------------------------------------------------------------
/src/tutorial/src/step-8/App/style.css:
--------------------------------------------------------------------------------
1 | .done {
2 | text-decoration: line-through;
3 | }
4 |
--------------------------------------------------------------------------------
/src/tutorial/src/step-8/App/template.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/tutorial/src/step-8/App/template.html
--------------------------------------------------------------------------------
/src/tutorial/src/step-8/_hint/App/composition.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/tutorial/src/step-8/_hint/App/composition.js
--------------------------------------------------------------------------------
/src/tutorial/src/step-8/_hint/App/options.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/tutorial/src/step-8/_hint/App/options.js
--------------------------------------------------------------------------------
/src/tutorial/src/step-8/_hint/App/template.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/tutorial/src/step-8/_hint/App/template.html
--------------------------------------------------------------------------------
/src/tutorial/src/step-8/description.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/tutorial/src/step-8/description.md
--------------------------------------------------------------------------------
/src/tutorial/src/step-9/App/composition.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/tutorial/src/step-9/App/composition.js
--------------------------------------------------------------------------------
/src/tutorial/src/step-9/App/options.js:
--------------------------------------------------------------------------------
1 | export default {
2 | // ...
3 | }
4 |
--------------------------------------------------------------------------------
/src/tutorial/src/step-9/App/template.html:
--------------------------------------------------------------------------------
1 | hello
2 |
--------------------------------------------------------------------------------
/src/tutorial/src/step-9/_hint/App/composition.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/tutorial/src/step-9/_hint/App/composition.js
--------------------------------------------------------------------------------
/src/tutorial/src/step-9/_hint/App/options.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/tutorial/src/step-9/_hint/App/options.js
--------------------------------------------------------------------------------
/src/tutorial/src/step-9/description.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/tutorial/src/step-9/description.md
--------------------------------------------------------------------------------
/src/tutorial/tutorial.data.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/src/tutorial/tutorial.data.ts
--------------------------------------------------------------------------------
/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/tsconfig.json
--------------------------------------------------------------------------------
/vercel.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/vuejs-translations/docs-pt/HEAD/vercel.json
--------------------------------------------------------------------------------