Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upGitHub is where the world builds software
Millions of developers and companies build, ship, and maintain their software on GitHub — the largest and most advanced development platform in the world.
A hope #348
A hope #348
Comments
|
Will take this into consideration, thanks. |
|
Nice suggestion, I think this is kind of necessary for the documentation. |
|
I want to work on this issue, can someone just elaborate what the problem is? I didn't understand the issue |
|
@ArishSultan import { createApp } from 'vue'
import { ComponentInstaller } from '@element-plus'
import yourAppHere from 'path/to/your/app/entrance'
const app = createApp(yourAppHere)
app.use(ComponentInstaller) |
|
in more detail, it will be better to tell our user what component to import to make the demo work. <template>
<el-radio v-model="radio" label="1">A</el-radio>
<el-radio v-model="radio" label="2">B</el-radio>
</template>
<script>
import { ElRadio } from '@element-plus'
export default {
data () {
return {
radio: '1'
};
}
}
</script> |
|
@ArishSultan yep, just like what @JeremyWuuuuu and @zazzaz said, and i am sorry for my description, i am working hard on my english |
I hope that all component reference docs indicates the name of component for referencing at the header, just like Vant:

Thanks a lot.