Now we'll round off our study of Vue by giving you a list of resources that you can use to go further in your learning, plus some other useful tips.
| Prerequisites: |
Familiarity with the core
HTML
,
CSS
,和
JavaScript
languages,
knowledge of the
terminal/command line
.
Vue components are written as a combination of JavaScript objects that manage the app's data and an HTML-based template syntax that maps to the underlying DOM structure. For installation, and to use some of the more advanced features of Vue (like Single File Components or render functions), you'll need a terminal with node + npm installed. |
|---|---|
| Objective: | To learn where to go to find further information on Vue, to continue your learning. |
Here’s where you should go to learn more about Vue:
The Vue CLI also provides us with tools for preparing our app for publishing to the web. You can do this like so:
npm run build
(或
yarn build
) in the console.
This will create a new
dist
directory containing all of your production ready files. To publish your site to the web, copy the contents of this folder to your hosting environment.
注意: The Vue CLI docs also include a specific guide on how to publish your app to many of the common hosting platforms.
Vue 3 is a major release of the framework with a lot of major changes. It went into active beta in April, 2020. The biggest change is a new Composition API that works as an alternative to the current property-based API. In this new API, a single
setup()
function is used on the component. Only what you return from this function is available in your
<template>
s. You are required to be explicit about "reactive" properties when using this API. Vue handles this for you using the Options API. This makes the new API typically considered a more advanced use case.
There are also a handful of other changes, including a change in how Apps are initialized in Vue. To read more about the changes involved with Vue 3, refer to this article by Vue School which goes over most of the major changes in Vue 3 .
最后修改: , 由 MDN 贡献者