title | type | order |
---|---|---|
认识团队 |
guide |
803 |
{% raw %}
<script id="vuer-profile-template" type="text/template"><h2 id="the-core-team">
核心团队
<button
v-if="geolocationSupported && !userPosition"
@click="getUserPosition"
:disabled="isSorting"
class="sort-by-distance-button"
>
<i
v-if="isSorting"
class="fa fa-refresh rotating-clockwise"
></i>
<template v-else>
<i class="fa fa-map-marker"></i>
<span>谁在我附近</span>
</template>
</button>
</h2>
<p v-if="errorGettingLocation" class="tip">
未成功获取您的位置。
</p>
<p>
Vue 的研发及其生态建设出自一个国际化的团队,这里会展示其中部分团队成员的信息。
</p>
<p v-if="userPosition" class="success">
核心团队成员已经按照跟你的距离排序。
</p>
<vuer-profile
v-for="profile in sortedTeam"
:key="profile.github"
:profile="profile"
:title-visible="titleVisible"
></vuer-profile>
<p v-if="errorGettingLocation" class="tip">
未成功获取您的位置。
</p>
<p>
一些 Vue 的社区成员让这里变得更加丰富多彩,有必要在此特别提及。我们与这些主要合作伙伴建立了更加亲密的关系,经常与他们就即将到来的功能和新闻展开协作。
</p>
<p v-if="userPosition" class="success">
社区伙伴们已经按照跟你的距离排序。
</p>
<vuer-profile
v-for="profile in sortedPartners"
:key="profile.github"
:profile="profile"
:title-visible="titleVisible"
></vuer-profile>
- ' + vm.profile.languages.map(function (languageCode, index) { var language = languageNameFor[languageCode] if ( languageCode !== 'en' && preferredLanguageCode && languageCode === preferredLanguageCode.slice(0, 2) ) { return ( '' + language + '' ) } return language }).join('
- ') + '
{% endraw %}