I'm drawing a node and after a \pause I'd like to add a label to the node. What I have so far simply repaints the node, but I hope that there is a nicer way:
\tikzstyle{vertex}=[circle,fill=black!25,minimum size=20pt,inner sep=0pt]
\begin{figure}
\begin{tikzpicture}[scale=1.8, auto,swap]
\node[vertex] (v_1) at (1,2) {$v_1$};
\pause
\node[vertex,label={[color=blue]80:$12$}] (v_1) at (1,2) {$v_1$}; %here I have to give name, node text and position again...
\end{tikzpicture}
\end{figure}