title | updated | type | order |
---|---|---|---|
チームに会おう |
2018-10-15 |
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">
Failed to get your location.
</p>
<p>
Vue とそのエコシステムの開発は国際的なチームによって導かれていますが、そのうちの数名については以下で紹介されることを希望しています。
</p>
<p v-if="userPosition" class="success">
コアチームはあなたからの距離でソートされています。
</p>
<vuer-profile
v-for="profile in sortedTeam"
:key="profile.name"
:profile="profile"
:title-visible="titleVisible"
></vuer-profile>
<p v-if="errorGettingLocation" class="tip">
Failed to get your location.
</p>
<p>
Vue コミュニティのメンバーは非常に豊かで、特別な言及が必要なものもあります。
私たちはこれら重要なパートナーとより親密な関係を築いており、しばしば今後のニュースや機能について調整しています。
</p>
<p v-if="userPosition" class="success">
コミュニティパートナーはあなたからの距離でソートされています。
</p>
<vuer-profile
v-for="profile in sortedPartners"
:key="profile.name"
: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 %}