重磅來襲 Vue 3.0 One Piece 正式發佈

代號爲One Piece 的Vue3.0 在9月19日凌晨正式發佈!!css

這次vue3.0 爲用戶提供了全新的 composition-api 以及更小的包大小,和更好的 TypeScript 支持。html

發佈地址vue

Vue-nextgit

Vue3.0 是當前很是流行的框架,Vue3.0更是醞釀了2年多的時間,通過2600屢次commit,600屢次PR,中間也發佈了不少beta版本。github

終於在通過尤大神和社區的共同努力下,Vue3.0帶着全新的 composition-api 正式發佈了。vue-router

一塊兒發佈的新特性還有:vuex

Teleport 組件vue-cli

Treeshaking的全新APIapi

Vue3.0官方文檔markdown

也能夠再在線體驗Vue3.0: codepen.io/yyx990803/p…

<template>
  <div id="app">
    <h1>{{message}}</h1>

    <p>
      Learn more with the
      <a
        href="https://v3.vuejs.org/"
        target="_blank"
        rel="noopener"
      >Vue Docs &amp; Resources</a>.
    </p>

    <button @click="doSomething">Say hello.</button>
  </div>
</template>

<script>
export default {
  data() {
    return {
      message: 'Welcome to Vue 3!'
    };
  },
  methods: {
    doSomething() {
      alert('Hello!');
    }
  }
};
</script>

<!-- Use preprocessors via the lang attribute! e.g. <style lang="scss"> -->
<style>
#app {
  font-family: Avenir, Helvetica, Arial, sans-serif;
  text-align: center;
  color: #2c3e50;
  margin-top: 60px;
}

a,
button {
  color: #4fc08d;
}

button {
  background: none;
  border: solid 1px;
  border-radius: 2em;
  font: inherit;
  padding: 0.75em 2em;
}
</style>

 

 

有興趣也能夠觀看尤大神在19號凌晨發佈的視頻

m.youtube.com/watch?v=Vp5…  

直播中尤大神也講訴了整個Vue3.0 的歷程,同時也介紹了一些新的特性。

 

 

 

 

  

另外,全部的官方生態庫和工具,例如vue-cli、vue-router、vuex、Vue-Test-utils、vue devtools、VSCode插件Vetur,如今都支持Vue3,但大多數仍然處於beta狀態,並在NPM的"next"標籤目錄下發布。

官方計劃在2020年年末以前穩定全部項目並將其轉換爲使用"latest"標籤。

官方發佈的推文

 

 

Vue 3.0 正式版

 

 

 
 

做者:shenjp1連接:https://juejin.im/post/6873980597472067597

相關文章
相關標籤/搜索